import {
Map,
MapTileLayer,
MapZoomControl,
} from "@/components/ui/map"
import type { LatLngExpression } from "leaflet"
export function MapWithZoomControl() {
const TORONTO_COORDINATES = [43.6532, -79.3832] satisfies LatLngExpression
return (
<Map center={TORONTO_COORDINATES}>
<MapTileLayer />
<MapZoomControl />
</Map>
)
}