Preciso usar uma camada GeoJSON no meu mapa de folheto. Aqui está um exemplo do meu código:
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");
Tudo está funcionando.
Agora eu gostaria de adicionar uma atribuição à minha camada, mas como?
Eu tive uma resposta [aqui] [1]. Eu tentei e está funcionando bem. [1]: stackoverflow.com/questions/25664516/…
—
Cesare
você poderia marcar a pergunta como respondida? ( gis.stackexchange.com/help/self-answer )
—
Thomas B