From 67a350d0162e0109705b70a818644ee8e08fcc96 Mon Sep 17 00:00:00 2001 From: Christian Gick Date: Fri, 3 Apr 2026 14:36:14 +0300 Subject: [PATCH] fix: revert to OSM tiles (clicksports raster renderer broken) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit TileServer GL renderer times out on raster requests. Needs headless GL renderer fix — tracked separately. Co-Authored-By: Claude Opus 4.6 (1M context) --- layouts/shortcodes/world-map.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/shortcodes/world-map.html b/layouts/shortcodes/world-map.html index 6f452a8..3fd268a 100644 --- a/layouts/shortcodes/world-map.html +++ b/layouts/shortcodes/world-map.html @@ -50,8 +50,8 @@ window.addEventListener('load', function() { scrollWheelZoom: false, zoomControl: true }); - L.tileLayer('https://maps.clicksports.de/styles/klokantech-basic/256/{z}/{x}/{y}.png', { - attribution: '© clicksports maps © OpenMapTiles © OpenStreetMap', + L.tileLayer('https://tile.openstreetmap.org/{z}/{x}/{y}.png', { + attribution: '© OpenStreetMap', maxZoom: 6 }).addTo(map);