Broşür haritamda bir GeoJSON Katmanı kullanmam gerekiyor. İşte benim kod bir örnek:
function onEachFeature(feature, layer) {
if (feature.properties && feature.properties.popupContent) {
layer.bindPopup(feature.properties.popupContent);
}
}
myGeoJsonLayer = L.geoJson(data, {
pointToLayer: function (feature, latlng) {
return L.circleMarker(latlng, geojsonMarkerOptions);
},
onEachFeature: onEachFeature
});
myGeoJsonLayer.addTo(map);
TOC.addOverlay(myGeoJsonLayer, "My GeoJSON Layer");
Her şey çalışıyor.
Şimdi katmanıma bir atıf eklemek istiyorum ama nasıl?
Bir yanıt aldım [burada] [1]. Denedim ve iyi çalışıyor. [1]: stackoverflow.com/questions/25664516/…
—
Cesare
lütfen soruyu cevaplandı olarak işaretler misiniz? ( gis.stackexchange.com/help/self-answer )
—
Thomas B