From 199456cf97284d8432ee7eb3252adf3a1d79b935 Mon Sep 17 00:00:00 2001 From: Grant Date: Sat, 2 Sep 2023 17:37:19 +0100 Subject: [PATCH] Update map.js to use correct tile.osm.org URL See: https://github.com/openstreetmap/operations/issues/737 --- server/perkeepd/ui/map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/perkeepd/ui/map.js b/server/perkeepd/ui/map.js index 1b4d8f05c..5f5697c9a 100644 --- a/server/perkeepd/ui/map.js +++ b/server/perkeepd/ui/map.js @@ -138,7 +138,7 @@ cam.MapAspect = React.createClass({ this.eh_ = new goog.events.EventHandler(this); var map = this.map = L.map(ReactDOM.findDOMNode(this), { layers: [ - L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { + L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', { attribution: '© OpenStreetMap contributors' }) ],