Leaflet에서 GeoJSON 레이어에 속성을 추가하는 방법은 무엇입니까?
전단지지도에서 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"); 모두 작동합니다. 이제 레이어에 속성을 추가하고 싶지만 어떻게합니까?