Merged in feat/SW-1447-selected-hotel-map-component (pull request #1340)

Feat(SW-1447): hotel map card destination page

Approved-by: Erik Tiekstra
This commit is contained in:
Matilda Landström
2025-02-18 19:05:31 +00:00
parent cd8b2e4b73
commit ba3ecedaee
21 changed files with 411 additions and 18 deletions

View File

@@ -1,10 +1,17 @@
import type { FeatureCollection, Point } from "geojson"
import type { Amenities } from "@/types/hotel"
import type { GalleryImage } from "../imageGallery"
export interface DestinationMarker {
id: string
type: string
name: string
coordinates: google.maps.LatLngLiteral
url: string
tripadvisor: number | undefined
amenities: Amenities
image: GalleryImage
}
export type MarkerProperties = Omit<DestinationMarker, "coordinates">