The initial zoom level can be set using the defaultZoom parameter. The value must be a number between minZoom and maxZoom. If the value is outside this range, it will be clamped to the nearest boundary.
Using Zoom Tags with Coordinates
If you use a note for coordinates, you can read the initial zoom level from that note's frontmatter using a zoomTag. For example, if a note has:
---
location: [-36, 89]
nearby: 100 mi
---
You can define the map block as:
```leaflet
coordinates: [[Note With Frontmatter]]
zoomTag: nearby
The map will interpret `nearby` (100 mi) and set the zoom level to the one closest to displaying a 100-mile radius (depending on `minZoom`, `maxZoom`, and `zoomDelta`).