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:
parent
f75b373dad
commit
31bd5f5749
1 changed files with 1 additions and 1 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue