diff --git a/website/assets/map_howto.js b/website/assets/map_howto.js index 01b12c1..cf9073e 100644 --- a/website/assets/map_howto.js +++ b/website/assets/map_howto.js @@ -11,6 +11,7 @@ function initMap() { boxZoom: false, doubleClickZoom: false, scrollZoom: false, + attributionControl: false, }) window.map = map @@ -24,6 +25,11 @@ function initMap() { let scale = new maplibregl.ScaleControl() map.addControl(scale) + let attrib = new maplibregl.AttributionControl({ + compact: false, + }) + map.addControl(attrib) + new maplibregl.Marker().setLngLat([-0.119, 51.507]).addTo(map) }