From ac68e26c705ab01d66a04cead3a7854e3c21b3e0 Mon Sep 17 00:00:00 2001 From: Smittix Date: Fri, 16 Jan 2026 14:49:02 +0000 Subject: [PATCH] Use OpenStreetMap tiles for APRS map Switch from CartoDB dark tiles to standard OpenStreetMap tiles which show roads and more detail for tracking APRS stations. Co-Authored-By: Claude Opus 4.5 --- templates/index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates/index.html b/templates/index.html index eb69a06..911e839 100644 --- a/templates/index.html +++ b/templates/index.html @@ -6131,8 +6131,9 @@ aprsMap = L.map('aprsMap').setView([initialLat, initialLon], initialZoom); - L.tileLayer('https://{s}.basemaps.cartocdn.com/dark_all/{z}/{x}/{y}{r}.png', { - attribution: '© OpenStreetMap contributors © CARTO', + // OpenStreetMap with roads - better for APRS station tracking + L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', { + attribution: '© OpenStreetMap contributors', maxZoom: 19 }).addTo(aprsMap);