Код, который я пытался получить, всплывающее окно не работает, я хочу, чтобы всплывающее окно автоматически появлялось, когда мой маркер указывает на местоположение, во всплывающем окне я хочу показать детали слоя.
function pop_Area_ZONE_1(feature, layer) {
var popupContent = feature.properties.Zone_Name;
layer.bindPopup(popupContent).addTo(map);
}
var layer_Area_ZONE_1 = new L.geoJson(json_Area_ZONE_1, {
attribution: "",
pane: "pane_Area_ZONE_1",
onEachFeature: pop_Area_ZONE_1,
style: style_Area_ZONE_1_0
});
bounds_group.addLayer(layer_Area_ZONE_1);
map.addLayer(layer_Area_ZONE_1);
L.marker([{{lat}}, {{lng}}], { icon: myIcon })
.addTo(map)
.bindPopup(popupContent)
.openPopup();
map.setView(new L.LatLng({{lat}}, {{lng}}), {{zoom}});
setBounds();