vue 项目 openlayer 加载 WMS 图层
这个是啥子情况呢,是我用 openlayer 加载 geoserve 发布的图层,然后发布出来的图层是 wms 的,所以说这篇博文主要是用来操作 vue 项目使用 openlayers 加载 geoserve 发布的 wms 图层。
geoserve 发布的图层地址
上面的就是 geoserve 发不出来的 WMS 图层连接。
openlayer 加载 WMS 图层
具体我不知道为啥这样写哈,但是我这样设置是可以加载出来的啊!
const projection = olProj.get('EPSG:900913');
const projectionExtent = projection.getExtent();
const size = olExtent.getWidth(projectionExtent) / 256;
const resolutions = new Array(19);
const matrixIds = new Array(19);
for (let z = 0; z < 19; ++z) {
resolutions[z] = size / Math.pow(2, z);
matrixIds[z] = "EPSG:900913:" + z;
}
const layerName = 'map:china_all' // 提换成自己的
let wmtsSource = new WMTS({
url: 'http://127.0.0.1:8080/geoserver/gwc/service/wmts', // 替换成自己服务器的
layer: layerName,
matrixSet: 'EPSG:900913',
format: 'image/png',
projection: projection,
tileGrid: new WMTSTileGrid({
origin: olExtent.getTopLeft(projectionExtent),
resolutions: resolutions,
matrixIds: matrixIds,
}),
style: '',
wrapX: true,
});
let wmtsService = new TileLayer({
source: wmtsSource,
zIndex: 0,
});
this.mapLayers = [wmtsService]
map.addLayer(wmtsService)
然后就可以了。
【版权声明】本博文著作权归作者所有,任何形式的转载都请联系作者获取授权并注明出处!
【重要说明】本文为本人的学习记录,论点和观点仅代表个人而不代表当时技术的真理,目的是自我学习和有幸成为可以向他人分享的经验,因此有错误会虚心接受改正,但不代表此刻博文无误!
【Gitee地址】秦浩铖:https://gitee.com/wjw1014