首页 / 浏览问题 / WebGIS / 问题详情
同一个geojson文件 有的面可以使用clipRegion但是有的不行, new L.supermap.TiledMapLayer中的clipRegion
3EXP 2024年09月19日

new L.supermap.TiledMapLayer(this.url, {
prjCoordSys: { "epsgCode": 3857 },
clipRegionEnabled: true,
clipRegion: region2,
}).addTo(this.gridLayer)

1个回答

您好,clipRegion会将geometry添加在url中进行请求,就会出现请求过长的问题,您可以参考这篇博客进行修改:https://blog.csdn.net/supermapsupport/article/details/121488715
961EXP 2024年09月19日
...