¿Cómo agregar una atribución en una capa GeoJSON desde el folleto?


10

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

Respuestas:


4

Copiado de la respuesta en Stack Overflow aquí: /programming/25664516/leaflet-how-to-add-an-attribution-on-a-geojson-layer

Citar:

De forma predeterminada, esto no es compatible, pero puede agregar un método getAttribution () en una instancia como esta: http://bl.ocks.org/tmcw/05c7d1164a9e62e67e6d

El código de ejemplo js proporcionado es:

<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>
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.