1000字范文,内容丰富有趣,学习的好帮手!
1000字范文 > openlayers创建图片图层

openlayers创建图片图层

时间:2022-05-07 09:41:48

相关推荐

openlayers创建图片图层

//关于openlayers创建图层 import ImageLayer from 'ol/layer/Image'createImageLayers(title, extent, imgUrl, opacity, zindex, visible) {const self = thisconst tempLayer = new ImageLayer({zIndex: zindex,title: title,name: title,visible: visible,opacity: opacity})self.$map.addLayer(tempLayer) var source = new Static({url: imgUrl,crossOrigin: null,projection: new Projection({code: 'EPSG:4326',extent: extent// 此处为图层的外包范围}),imageExtent: extent})tempLayer.setSource(source)},```

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。