"use client" import { Map, type MapProps, useMap } from "@vis.gl/react-google-maps" import { useIntl } from "react-intl" import { MinusIcon, PlusIcon } from "@/components/Icons" import Button from "@/components/TempDesignSystem/Button" import HotelListingMapContent from "./HotelListingMapContent" import HotelMapContent from "./HotelMapContent" import styles from "./interactiveMap.module.css" import type { InteractiveMapProps } from "@/types/components/hotelPage/map/interactiveMap" export default function InteractiveMap({ coordinates, pointsOfInterest, activePoi, hotelPins, activeHotelPin, mapId, closeButton, onActivePoiChange, onActiveHotelPinChange, }: InteractiveMapProps) { const intl = useIntl() const map = useMap() const mapOptions: MapProps = { defaultZoom: 14, defaultCenter: coordinates, disableDefaultUI: true, clickableIcons: false, mapId, } function zoomIn() { const currentZoom = map && map.getZoom() if (currentZoom) { map.setZoom(currentZoom + 1) } } function zoomOut() { const currentZoom = map && map.getZoom() if (currentZoom) { map.setZoom(currentZoom - 1) } } return (