gpt4 book ai didi

javascript - 在 Leaflet 中悬停 map 时获取图层信息

转载 作者:行者123 更新时间:2023-11-29 17:39:15 24 4
gpt4 key购买 nike

我已将 Geojson 图层添加到 Leaflet 中的 basemap 。我使用以下事件来获取 map 数据和图层数据:

map.on('mousemove', function (e) {
console.log(e);
});

它给了我以下日志:

enter image description here

当我将鼠标悬停在 Geojson 层上时,我找不到任何关于它的信息(target 中没有关于该层的信息)。

有人对此有任何解决方案吗?

最佳答案

获取Geojson层信息的代码如下:

$.ajax({
dataType: "json",....

onEachFeature: function (feature, layer) {
layer.on('mousemove', function (event) {
console.log(event);
});
}
});

关于javascript - 在 Leaflet 中悬停 map 时获取图层信息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54185034/

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