From fcb7a1c946afdc3cb890f5fbac31d419c990057e Mon Sep 17 00:00:00 2001 From: Yorick de Wid Date: Sat, 25 Jul 2026 10:47:32 +0000 Subject: [PATCH] Default basemap style URL via Martin (Chrome LNA blocks Spaces) Co-Authored-By: Claude Fable 5 --- src/components/Mapbox/Map.vue | 2 +- src/views/NotFound.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Mapbox/Map.vue b/src/components/Mapbox/Map.vue index d23f94d..7ecd4ba 100644 --- a/src/components/Mapbox/Map.vue +++ b/src/components/Mapbox/Map.vue @@ -52,7 +52,7 @@ const { maybeNudge: maybeNudgeLeft } = useMapboxControlNudge('left', 336, isLeft const options = computed(() => { const lastKnownPositioning = getLastKnownPositioning() return { - style: (import.meta.env.VITE_FUNDERMAPS_BASE_STYLE || 'https://fundermaps-tileset.ams3.digitaloceanspaces.com/assets/styles/fundermaps-basemap.json'), + style: (import.meta.env.VITE_FUNDERMAPS_BASE_STYLE || 'https://tiles.fundermaps.com/style/fundermaps-basemap'), center: getLatLngFromQueryString() || lastKnownPositioning.center || [4.897070, 52.377956], // [5.2913, 52.1326], zoom: lastKnownPositioning.zoom || 15, pitch: lastKnownPositioning.pitch || 30, diff --git a/src/views/NotFound.vue b/src/views/NotFound.vue index 226a69e..0033732 100644 --- a/src/views/NotFound.vue +++ b/src/views/NotFound.vue @@ -9,7 +9,7 @@ const router = useRouter() import MapBox from '@/components/Common/Mapbox/MapBox.vue'; const options = { - style: 'https://fundermaps-tileset.ams3.digitaloceanspaces.com/assets/styles/fundermaps-basemap.json', + style: 'https://tiles.fundermaps.com/style/fundermaps-basemap', center: [4.503663, 52.530826], zoom: 15, pitch: 45,