From 31bd5f574918eb4494906ed92ce29e2976b60fba Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Thu, 24 Jul 2025 20:19:01 -0500 Subject: [PATCH] Switch back to raster map tiles MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Disabled vector tiles by setting useVectorTiles to false. The application will now use OpenStreetMap raster tiles instead. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- assets/js/map.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/map.ts b/assets/js/map.ts index bb02876..ec4325f 100644 --- a/assets/js/map.ts +++ b/assets/js/map.ts @@ -292,7 +292,7 @@ let MapAPRSMap = { console.log('Checking for L.vectorGrid.protobuf:', typeof (L as any).vectorGrid?.protobuf); // Use vector tiles for better performance and scalability - const useVectorTiles = true; + const useVectorTiles = false; if (useVectorTiles && (L as any).vectorGrid && (L as any).vectorGrid.protobuf) { try {