From a002cde2d70e1079233bf9b519a240c4e208cf91 Mon Sep 17 00:00:00 2001 From: Pablo Revilla Date: Wed, 15 Oct 2025 21:32:50 -0700 Subject: [PATCH] Revert "fixed map to show only channels with locations" --- meshview/templates/map.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meshview/templates/map.html b/meshview/templates/map.html index 56bbfdc..449137d 100644 --- a/meshview/templates/map.html +++ b/meshview/templates/map.html @@ -258,6 +258,8 @@ loadTranslations().then(async () => { if (customView) map.setView([customView.lat,customView.lng],customView.zoom); else map.fitBounds(areaBounds); + const extraChannels = await fetchAdditionalChannels(); + extraChannels.forEach(raw => channelSet.add(channelKey(raw))); channelList = Array.from(channelSet).sort(); // ---- LocalStorage for Filter Preferences ----