Skip to content

Commit

Permalink
fix(frontend): fix max map zoom
Browse files Browse the repository at this point in the history
The maximum map zoom was accidentally changed during the move to vector basemaps. This reverts that change.
  • Loading branch information
eatyourgreens committed Jun 5, 2024
1 parent abffc13 commit 5d46abe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/config/map-view.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const mapViewConfig: MapViewConfig = {
},
viewLimits: {
minZoom: 3,
maxZoom: 12,
maxZoom: 16,
maxPitch: 0,
},
};

0 comments on commit 5d46abe

Please sign in to comment.