다음 카카오 지도 API, 지도 이미지 혹은 맵타일 로딩 되다 말 때
페이지 정보
작성자 인바이트미 댓글 0건 조회 938회 작성일 22-09-08 04:40본문
다음 카카오 지도 API, 지도 이미지 혹은 맵타일 로딩이 되다 말거나 공백으로 나오는 때가 있다.
<script charset="UTF-8">
new daum.roughmap.Lander({
"timestamp" : "1662428647397",
"key" : "2bmjo",
"mapHeight" : "260"
}).render();
</script>
위 제공 스크립트에 시간차를 두어 실행하게 하면 된다.
예시)
<script charset="UTF-8">
setTimeout(function() {
new daum.roughmap.Lander({
"timestamp" : "1662428647397",
"key" : "2bmjo",
"mapHeight" : "260"
}).render();
window.dispatchEvent(new Event('resize'));
},3000);
</script>
댓글목록
등록된 댓글이 없습니다.