feat(SW-189): added translations and some minor changes

This commit is contained in:
Erik Tiekstra
2024-09-11 14:40:48 +02:00
parent 789133af11
commit 21d8a5835a
32 changed files with 271 additions and 151 deletions

View File

@@ -0,0 +1,4 @@
export interface Coordinates {
lat: number
lng: number
}

View File

@@ -0,0 +1,11 @@
import { Coordinates } from "./coordinates"
export type StaticMapProps = {
city?: string
coordinates?: Coordinates
width: number
height: number
zoomLevel?: number
mapType?: "roadmap" | "satellite" | "terrain" | "hybrid"
altText: string
}

View File

@@ -1,7 +0,0 @@
export type StaticMapProps = {
city: string
width: number
height: number
zoomLevel: number
mapType: "roadmap" | "satellite" | "terrain" | "hybrid"
}