feat(SW-68): add static map component

This commit is contained in:
Fredrik Thorsson
2024-08-08 13:33:47 +02:00
parent ad96c9bd30
commit 4c0c90a0f0
13 changed files with 100 additions and 16 deletions
@@ -0,0 +1,7 @@
export type StaticMapProps = {
city: string
width: number
height: number
zoomLevel: number
mapType: "roadmap" | "satellite" | "terrain" | "hybrid"
}