首页 / 浏览问题 / WebGIS / 问题详情
leaflet访问切图切的矢量瓦片
55EXP 2023年08月21日

在桌面端软件制图后使用切图为矢量瓦片缓存,并发布iServer中,发布ugcv5 mvt服务,使用leaflet访问地图报错

var url_map_vec="http://localhost:8090/iserver/services/map-mvt-SiChuanMapSiChuan/rest/maps/SiChuanMap@SiChuan"
vectorLayer = L.supermap.tiledVectorLayer(url_map_vec, {
    cacheEnabled: true
}).addTo(map);

1个回答

你好,请问在iserver中通过leaflet预览是否正常?

1,865EXP 2023年08月22日
我发布的是ugcv5 mvt服务,浏览里面只有使用openlayer mvt和mapbox浏览,不清楚案例发布的是什么服务

发布服务选择矢量瓦片REST服务即可。

iclient for leaflet加载矢量瓦片参考博客:https://blog.csdn.net/supermapsupport/article/details/127958630

示例:https://iclient.supermap.io/examples/leaflet/editor.html#mvt_mapboxgl

...