From a0b0ed254486897518421c7b8bd575edb6a4fd4f Mon Sep 17 00:00:00 2001 From: Hrishikesh Vaipurkar Date: Mon, 30 Jun 2025 10:48:34 +0000 Subject: [PATCH] Merged in feat/SW-3072-desktop-new-button-for-see- (pull request #2408) feat: SW-3072 Added overlay to static map on city page * feat: SW-3072 Added overlay to static map on city page * feat: SW-3072 Updated map link in desktop select-hotel page * feat: SW-3072 Updated as review comments Approved-by: Erik Tiekstra --- .../HotelReservation/SelectHotel/index.tsx | 23 +++++++++---------- .../SelectHotel/selectHotel.module.css | 22 +++++++++++++++--- 2 files changed, 30 insertions(+), 15 deletions(-) diff --git a/apps/scandic-web/components/HotelReservation/SelectHotel/index.tsx b/apps/scandic-web/components/HotelReservation/SelectHotel/index.tsx index 517cd0c07..a0e46d2b3 100644 --- a/apps/scandic-web/components/HotelReservation/SelectHotel/index.tsx +++ b/apps/scandic-web/components/HotelReservation/SelectHotel/index.tsx @@ -1,4 +1,5 @@ import { MaterialIcon } from "@scandic-hotels/design-system/Icons/MaterialIcon" +import { Typography } from "@scandic-hotels/design-system/Typography" import HotelCardListing from "@/components/HotelReservation/HotelCardListing" import BookingCodeFilter from "@/components/HotelReservation/SelectHotel/BookingCodeFilter" @@ -82,21 +83,19 @@ export default async function SelectHotel({ city={city.name} country={isCityWithCountry(city) ? city.country : undefined} width={340} - height={180} + height={200} zoomLevel={11} mapType="roadmap" altText={`Map of ${city.name} city center`} /> -
- {intl.formatMessage({ - defaultMessage: "See map", - })} - -
+ + + + {intl.formatMessage({ + defaultMessage: "See on map", + })} + + ) : ( @@ -104,7 +103,7 @@ export default async function SelectHotel({