我在传单地图中有标记图层,我想根据要素属性隐藏几个标记,但我看不到传单文档中的任何方法。
简化我的标记图层就像:
L.geoJson(data, {
onEachFeature: onEachFeature,
pointToLayer: function(feature, latlng) {
return L.circleMarker(latlng, {
color: feature.properties.Color,
});
}
}).addTo(markersLayer);
PS。我使用传单稳定(0.7)
答案 0 :(得分:0)
切换标记的容器可见性:
marker._container.style.visibility = "visible"
或
marker._container.style.visibility = "hidden"