Files
velo-park/src/types/Geo.ts
2026-03-24 21:51:58 +01:00

14 lines
215 B
TypeScript

export interface GeoPoint {
lon: number
lat: number
}
export interface GeoShape {
type: 'Feature'
geometry: {
coordinates: [number, number]
type: 'Point'
}
properties: Record<string, unknown>
}