gpt4 book ai didi

javascript - Leaflet map.RemoveLayer 不工作 - 未捕获类型错误 : Cannot read property '_removePath' of undefined

转载 作者:行者123 更新时间:2023-11-30 19:04:17 24 4
gpt4 key购买 nike

关于我之前的问题

Leaflet checking and disabling GeoJSON sublayers troubleshoots

这里

https://gis.stackexchange.com/questions/343444/leaflet-geojson-sublayers-checked-on-off/

我决定剥离这段代码并找出具体是哪一行导致了问题

  (document.querySelector("input[name=infill]").addEventListener('change', function() {
if (this.checked) map.addLayer(infill);
else map.removeLayer(infill);
}))

在这种情况下,行 else map.removeLayer(infill); 会导致问题。这意味着 map.removeLayer(infill) 有问题。

谁能给个建议?

感谢和问候

最佳答案

在删除图层之前添加波纹管条件

if(map.hasLayer(infill)) {
map.removeLayer(infill);
}

关于javascript - Leaflet map.RemoveLayer 不工作 - 未捕获类型错误 : Cannot read property '_removePath' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59156424/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com