gpt4 book ai didi

javascript - _leaflet_id 在 onEachFeature 函数中返回 undefined

转载 作者:行者123 更新时间:2023-11-30 15:02:00 25 4
gpt4 key购买 nike

我尝试通过 function onEachFeature 访问每个 feature_leaflet_id。它总是返回 undefined,当它用于:

function onEachFeature(feature, layer) {
console.log(layer._leaflet_id);
}

我在使用时得到了正确的 _leaflet_id:

sampleGeoJSON.eachLayer(function(layer) {
console.log(layer._leaflet_id);
})

最佳答案

_leaflet_id 是 Leaflet 库在需要时设置的内部标识符。

当您第一次构建图层时(在您的例子中,我猜是通过 L.geoJSON 工厂?),它们可能还没有那个标识符。

使用L.Util.stamp (或快捷方式L.stamp)代替,如果你想强制传单分配一个标识符,如果还没有设置的话。

关于javascript - _leaflet_id 在 onEachFeature 函数中返回 undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46388413/

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