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?
leaflet
geojson
fields-attributes
Cesare
fonte
fonte
Respostas:
Copiado da resposta no Stack Overflow aqui: /programming/25664516/leaflet-how-to-add-an-attribution-on-a-geojson-layer
Citar:
O exemplo de código js fornecido é:
fonte