From 7f96126d7e0586db8ae950f554cf2cbde793a346 Mon Sep 17 00:00:00 2001 From: Edward Betts Date: Thu, 2 Nov 2023 12:46:47 +0000 Subject: [PATCH] Link leaflet map attribution to OSM copyright page --- frontend/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/App.vue b/frontend/App.vue index 1d0e0f9..e971421 100644 --- a/frontend/App.vue +++ b/frontend/App.vue @@ -1825,7 +1825,7 @@ export default { var map = L.map("map", options); var osm_url = "https://tile.openstreetmap.org/{z}/{x}/{y}.png"; var osm = L.tileLayer(osm_url, { - attribution: '© OpenStreetMap contributors', + attribution: '© OpenStreetMap contributors', maxZoom: 19, }); osm.addTo(map);