Necesito usar una capa GeoJSON en mi mapa de folleto. Aquí hay una muestra de mi 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");
Todo esta funcionando.
Ahora me gustaría agregar una atribución en mi capa, pero ¿cómo?
He recibido una respuesta [aquí] [1]. Lo he intentado y está funcionando bien. [1]: stackoverflow.com/questions/25664516/…
—
Cesare
¿podría marcar la pregunta como respondida? ( gis.stackexchange.com/help/self-answer )
—
Thomas B