전단지지도에서 GeoJSON 레이어를 사용해야합니다. 다음은 내 코드 샘플입니다.
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 )
—
토마스 B