diff --git a/docs/lib/leaflet.md b/docs/lib/leaflet.md index ef3e5d3d1..fb19b8a8a 100644 --- a/docs/lib/leaflet.md +++ b/docs/lib/leaflet.md @@ -21,7 +21,9 @@ div.style = "height: 400px;"; const map = L.map(div) .setView([51.505, -0.09], 13); -L.tileLayer("https://tile.openstreetmap.org/{z}/{x}/{y}.png") +L.tileLayer("https://tile.openstreetmap.org/{z}/{x}/{y}.png", { + attribution: '© OpenStreetMap' +}) .addTo(map); L.marker([51.5, -0.09])