ฉันต้องใช้ GeoJSON Layer บนแผนที่ Leaflet ของฉัน นี่คือตัวอย่างรหัสของฉัน:
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");
ทั้งหมดใช้งานได้
ตอนนี้ฉันต้องการเพิ่มที่มาในเลเยอร์ของฉัน แต่อย่างไร
ฉันได้รับคำตอบ [ที่นี่] [1] ฉันลองแล้วมันใช้งานได้ดี [1]: stackoverflow.com/questions/25664516/…
—
Cesare
คุณช่วยกรุณาทำเครื่องหมายคำถามเป็นคำตอบได้ไหม? ( gis.stackexchange.com/help/self-answer )
—
Thomas B