From a65f5f619f94d7b1f6d8a8c6df55df9001f50794 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Thu, 17 Jan 2019 13:58:56 +0000 Subject: [PATCH] Correct attribution text --- client_src/js/Map.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client_src/js/Map.mjs b/client_src/js/Map.mjs index 3ddfdf9..ca33a2f 100644 --- a/client_src/js/Map.mjs +++ b/client_src/js/Map.mjs @@ -16,7 +16,7 @@ class Map { this.layer_openstreet = Leaflet.tileLayer("http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png", { id: "openstreetmap", maxZoom: 19, - attribution: "© OSM Mapnik OpenStreetMap" + attribution: "© OpenStreetMap contributors" }).addTo(this.map); } }