如何使用传单的map.eachLayer查找标记?

问题描述 投票:0回答:1

我能够显示聚类标记的内容,但无法显示单个标记的内容。

请找到下面的代码,其中else语句将处理单个标记。

map.eachLayer(function(marker) {  
   if (marker.getChildCount) { // to get cluster marker details
     console.log('cluster length ' + marker.getAllChildMarkers().length);
   } else {
     // how to display the contents of a single marker ??

     alert(marker.options.title); // doesn't work
   }

谢谢。

leaflet marker
1个回答
2
投票

请记住,map.eachLayer()适用于地图的每一层。这包括弹出窗口和地图图块层,以及标记和标记簇。并非所有这些类型的图层都具有与标记或聚类相同的选项。您需要进行测试以检查每个图层是否为标记,群集或其他内容。此外,请记住标记可能不一定有标题集。

这对我有用:

map.eachLayer(function(layer) {
    if(layer.options && layer.options.pane === "markerPane") {
        alert("Marker [" + layer.options.title + "]");
    }
});
© www.soinside.com 2019 - 2024. All rights reserved.