1
- import Page from "components/common/Page" ;
2
- import React from "react" ;
3
- import styled from "styled-components" ;
1
+ import Page from "components/common/Page"
2
+ import React from "react"
3
+ import styled from "styled-components"
4
4
5
- import useTranslation from "utils/hooks/useTranslation" ;
5
+ import useTranslation from "utils/hooks/useTranslation"
6
6
7
7
const KAKAO_MAP_URL = "https://map.kakao.com/link/map/1946823368" ;
8
8
const NAVER_MAP_URL = "https://naver.me/Goz5cKSr" ;
@@ -27,7 +27,7 @@ export const HowToGetThere: React.FC = () => {
27
27
React . useEffect ( ( ) => {
28
28
if ( ! ( window . kakao && window . kakao . maps && kakaoMapRef . current ) ) return ;
29
29
30
- const content = `<a href="${ KAKAO_MAP_URL } "><div style="width:250px;text-align:center;">${ t ( "수원컨벤션센터" ) } </div></a>` ;
30
+ const content = `<a href="${ KAKAO_MAP_URL } "><div style="width:250px;text-align:center;">${ t ( "수원컨벤션센터 3층 " ) } </div></a>` ;
31
31
const position = new window . kakao . maps . LatLng ( 37.285818093062026 , 127.05950558082746 ) ;
32
32
const map = new window . kakao . maps . Map ( kakaoMapRef . current , { center : position , level : 3 } ) ;
33
33
new kakao . maps . InfoWindow ( { content } ) . open ( map , new kakao . maps . Marker ( { map, position } ) ) ;
@@ -45,7 +45,7 @@ export const HowToGetThere: React.FC = () => {
45
45
< Page title = "장소 안내" >
46
46
< div style = { { width : "100%" , maxWidth : "1200px" } } >
47
47
< h1 > { t ( "장소 안내" ) } </ h1 >
48
- < h2 > { t ( "수원컨벤션센터" ) } </ h2 >
48
+ < h2 > { t ( "수원컨벤션센터 3층 " ) } </ h2 >
49
49
< div >
50
50
< div style = { { ...flexBoxStyle } } >
51
51
< MapSelectTabBtn
0 commit comments