From 684f8117a91e592c44e87e95068e51b808f98869 Mon Sep 17 00:00:00 2001 From: Shim MunSeong Date: Sun, 24 Aug 2025 19:35:46 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20=EB=84=A4=EC=9D=B4=EB=B2=84=20=EC=A7=80?= =?UTF-8?q?=EB=8F=84=EC=97=90=EC=84=9C=20defaultCenter=EC=9D=98=20?= =?UTF-8?q?=EC=84=B8=EB=A1=9C=20=EC=9C=84=EC=B9=98=20=EC=A1=B0=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/ui/src/components/PreviewMap/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/ui/src/components/PreviewMap/index.tsx b/packages/ui/src/components/PreviewMap/index.tsx index 09b6a724..3c3a2e8d 100644 --- a/packages/ui/src/components/PreviewMap/index.tsx +++ b/packages/ui/src/components/PreviewMap/index.tsx @@ -15,6 +15,7 @@ interface Props { } const CONFIRM_LOCAL_STORAGE_KEY = 'BOOLTI_PREVIEW_MAP_OPEN_NAVER_MAP'; +const DEFAULT_CENTER_LATITUDE_OFFSET = 0.00005; const PreviewMap = ({ latitude, longitude, name, isAppWebview }: Props) => { const confirm = useConfirm(); @@ -62,6 +63,7 @@ const PreviewMap = ({ latitude, longitude, name, isAppWebview }: Props) => { }, 1500); } }; + return ( { zoomControl={false} mapTypeControl={false} zoom={18} - defaultCenter={new navermaps.LatLng(latitude, longitude)} + defaultCenter={new navermaps.LatLng(latitude + DEFAULT_CENTER_LATITUDE_OFFSET, longitude)} >