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:
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user