Muszę użyć warstwy GeoJSON na mojej mapie Ulotki. Oto przykład mojego kodu:
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");
Wszystko działa.
Teraz chciałbym dodać atrybucję na mojej warstwie, ale jak?
leaflet
geojson
fields-attributes
Cesare
źródło
źródło
Odpowiedzi:
Skopiowano z odpowiedzi na temat przepełnienia stosu tutaj: /programming/25664516/leaflet-how-to-add-an-attribution-on-a-geojson-layer
Zacytować:
Podany przykładowy kod js to:
źródło