From 53f80de7fd905639dd6508ebe9ddc9f300a9e439 Mon Sep 17 00:00:00 2001 From: Brandon Liu Date: Sat, 11 Jan 2025 00:35:45 +0800 Subject: [PATCH] Switch demo map to source coop; css (#355) --- app/index.html | 2 +- app/src/MapView.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/index.html b/app/index.html index 2a03af72..08518298 100644 --- a/app/index.html +++ b/app/index.html @@ -4,7 +4,7 @@ Protomaps Basemaps - +
diff --git a/app/src/MapView.tsx b/app/src/MapView.tsx index 395f12f9..eca09716 100644 --- a/app/src/MapView.tsx +++ b/app/src/MapView.tsx @@ -440,7 +440,7 @@ function MapView() { const [theme, setTheme] = createSignal(hash.theme || "light"); const [lang, setLang] = createSignal(hash.lang || "en"); const [tiles, setTiles] = createSignal( - hash.tiles || "https://demo-bucket.protomaps.com/v4.pmtiles", + hash.tiles || "https://data.source.coop/protomaps/openstreetmap/v4.pmtiles", ); const [localSprites, setLocalSprites] = createSignal( hash.local_sprites === "true", @@ -644,7 +644,7 @@ function MapView() {