console log에 아래와 같이 출력되고, 지도가 그려지지 않습니다 ~
문제가 될만한게 있나요?
message :
A parser-blocking, cross site (i.e. different eTLD+1) script, http://t1.daumcdn.net/mapjsapi/js/main/4.0.10/kakao.js, is invoked via document.write. The network request for this script MAY be blocked by the browser in this or a future page load due to poor network connectivity. If blocked in this page load, it will be confirmed in a subsequent console message. See https://www.chromestatus.com/feature/5718547946799104 for more details.
kakao dev 사이트에 프로젝트 등록 후 웹에 http://localhost:8080 host 등록 해 둔 상태입니다.
사이트 script는 아래처럼 걸어 두었구요,
지도 init script는 아래처럼 작성했습니다. (사이트에서 제공해주시는 샘플)
var container = document.getElementById(‘map’); //지도를 담을 영역의 DOM 레퍼런스
var options = { //지도를 생성할 때 필요한 기본 옵션
center: new daum.maps.LatLng(33.450701, 126.570667), //지도의 중심좌표.
level: 3 //지도의 레벨(확대, 축소 정도)
};
var map = new daum.maps.Map(container, options);
확인 부탁드립니다.