feat(SW-340): Added hotel pins
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
import { Coordinates } from "@/types/components/maps/coordinates"
|
||||
import type { PointOfInterest } from "@/types/hotel"
|
||||
|
||||
export interface HotelListingProps {
|
||||
// pointsOfInterest: PointOfInterest[]
|
||||
@@ -10,7 +9,15 @@ export interface HotelListingProps {
|
||||
export interface SelectHotelMapProps {
|
||||
apiKey: string
|
||||
coordinates: Coordinates
|
||||
pointsOfInterest: PointOfInterest[]
|
||||
hotelPins: HotelPin[]
|
||||
mapId: string
|
||||
isModal: boolean
|
||||
}
|
||||
|
||||
export type HotelPin = {
|
||||
name: string
|
||||
coordinates: Coordinates
|
||||
price: string
|
||||
currency: string
|
||||
image: string
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user