네이버 지도 API를 사용했을 때,
const map = new naver.maps.Map(mapElement.current, mapOptions);
아래와 같이 지도들이 겹쳐서 보이게 되었다.
naver map 사이즈를 재설정해주면 해결
const size = new naver.maps.Size(450, 450);
map.setSize(size);
반응형
'💻 개발IT > 기타' 카테고리의 다른 글
[FastText] 단어 유사도 구현하기 (0) | 2023.02.07 |
---|---|
[Word2Vec] 단어 유사도 구현하기 (0) | 2023.02.01 |
[Gensim] The vocab attribute was removed from KeyedVector in Gensim 4.0.0. (0) | 2023.01.29 |
[selenium] ElementClickInterceptedException: Message: element click intercepted: (0) | 2022.09.26 |
[HTML] Shadow DOM 이란? (feat. 크롤링 실패) (1) | 2022.09.17 |
[HTML/CSS] cell sticky table 생성 (0) | 2022.09.14 |
[nvm] Error: Permission denied @ apply2files - /usr/local/lib/node_modules/expo-cli/node_modules/.bin/detect-libc (0) | 2022.09.13 |
OpenAPI Generator 사용법 (0) | 2022.09.08 |