Switch back to raster map tiles

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 <noreply@anthropic.com>
This commit is contained in:
Graham McIntire 2025-07-24 20:19:01 -05:00
parent f75b373dad
commit 31bd5f5749
No known key found for this signature in database

View file

@ -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 {