Come aggiungere un'attribuzione su un livello GeoJSON da Leaflet?


10

Devo usare un livello GeoJSON sulla mia mappa del volantino. Ecco un esempio del mio codice:

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");

Funziona tutto.

Ora vorrei aggiungere un'attribuzione sul mio livello, ma come?


Ho avuto una risposta [qui] [1]. Ho provato e funziona benissimo. [1]: stackoverflow.com/questions/25664516/…
Cesare,

potresti per favore contrassegnare la domanda come risposta? ( gis.stackexchange.com/help/self-answer )
Thomas B

Risposte:


4

Copiato dalla risposta su Stack Overflow qui: /programming/25664516/leaflet-how-to-add-an-attribution-on-a-geojson-layer

Citazione:

Per impostazione predefinita, questo non è supportato, ma è possibile applicare un metodo getAttribution () su un'istanza in questo modo: http://bl.ocks.org/tmcw/05c7d1164a9e62e67e6d

Il codice js di esempio fornito è:

<script>
L.mapbox.accessToken = 'pk.eyJ1IjoidG1jdyIsImEiOiJIZmRUQjRBIn0.lRARalfaGHnPdRcc-7QZYQ';
var map = L.mapbox.map('map', 'examples.map-i86nkdio').setView([40, -74.50], 9);
var gj = L.geoJson();
gj.getAttribution = function() { return 'foo bar'; };
gj.addTo(map);
</script>
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.