我能够显示聚类标记的内容,但无法显示单个标记的内容。
请找到以下代码,其他语句将处理单个标记。
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
}
感谢。
答案 0 :(得分:2)
请记住,map.eachLayer()
适用于地图的每个图层。这包括弹出窗口和地图图块层,以及标记和标记簇。并非所有这些类型的图层都具有与标记或聚类相同的选项。您需要进行测试以检查每个图层是否为标记,群集或其他内容。另外,请记住,标记可能不一定具有标题集。
这对我有用:
map.eachLayer(function(layer) {
if(layer.options && layer.options.pane === "markerPane") {
alert("Marker [" + layer.options.title + "]");
}
});