From 742e4538b0827a72f23d2ea05dd8e2ad9cd3df28 Mon Sep 17 00:00:00 2001 From: qwerty287 <80460567+qwerty287@users.noreply.github.com> Date: Tue, 11 Jul 2023 07:42:44 +0200 Subject: [PATCH] Remove OSM subdomains (#407) --- scripts/main/mapview.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/main/mapview.js b/scripts/main/mapview.js index a2e26dd5..f7c857ef 100644 --- a/scripts/main/mapview.js +++ b/scripts/main/mapview.js @@ -20,29 +20,29 @@ const map_provider_layer_attribution = { * @type {MapProvider} */ "OpenStreetMap.org": { - layer: "https://{s}.tile.osm.org/{z}/{x}/{y}.png", - attribution: `© ${lychee.locale["OSM_CONTRIBUTORS"]}`, + layer: "https://tile.openstreetmap.org/{z}/{x}/{y}.png", + attribution: `© ${lychee.locale["OSM_CONTRIBUTORS"]}`, }, /** * @type {MapProvider} */ "OpenStreetMap.de": { layer: "https://tile.openstreetmap.de/{z}/{x}/{y}.png ", - attribution: `© ${lychee.locale["OSM_CONTRIBUTORS"]}`, + attribution: `© ${lychee.locale["OSM_CONTRIBUTORS"]}`, }, /** * @type {MapProvider} */ "OpenStreetMap.fr": { layer: "https://{s}.tile.openstreetmap.fr/osmfr/{z}/{x}/{y}.png ", - attribution: `© ${lychee.locale["OSM_CONTRIBUTORS"]}`, + attribution: `© ${lychee.locale["OSM_CONTRIBUTORS"]}`, }, /** * @type {MapProvider} */ RRZE: { layer: "https://{s}.osm.rrze.fau.de/osmhd/{z}/{x}/{y}.png", - attribution: `© ${lychee.locale["OSM_CONTRIBUTORS"]}`, + attribution: `© ${lychee.locale["OSM_CONTRIBUTORS"]}`, }, };