Tôi cần sử dụng Lớp GeoJSON trên bản đồ Tờ rơi của mình. Đây là một mẫu mã của tôi:
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");
Tất cả đang hoạt động.
Bây giờ tôi muốn thêm một thuộc tính trên lớp của mình nhưng làm thế nào?
Tôi đã có một phản hồi [ở đây] [1]. Tôi đã thử và nó hoạt động tốt. [1]: stackoverflow.com/questions/25664516/ Kẻ
—
Cesare
bạn có thể vui lòng đánh dấu câu hỏi như đã trả lời? ( gis.stackexchange.com/help/elf-answer )
—
Thomas B