SOSO 맵 JS 는 레이 블 과 중심 점 을 html 로 그립 니 다.

1585 단어
코드 를 직접 붙 입 니 다. 이것 은 로 컬 에서 html 파일 을 만 들 고 직접 실행 할 수 있 습 니 다.




Map

<br>function init() { <br>var center = new soso.maps.LatLng(31.15953,121.516035); <br>var map = new soso.maps.Map( <br>document.getElementById("container"), <br>{ <br>center: center,// <br>zoom: 15// <br>} <br>); <br> <br>// mark <br>var position1 = new soso.maps.LatLng(31.15751,121.514061); <br> <br>var marker = new soso.maps.Marker({ <br>position: position1, <br>map: map <br>}); <br> <br>// mark <br>var position2 = new soso.maps.LatLng(31.160705,121.524017); <br> <br>var marker = new soso.maps.Marker({ <br>position: position2, <br>map: map <br>}); <br> <br>} <br>function loadScript() { <br>var script = document.createElement("script"); <br>script.type = "text/javascript"; <br>script.src = "http://map.soso.com/api/v2/main.js?callback=init"; <br>document.body.appendChild(script); <br>} <br>window.onload = loadScript; <br>





좋은 웹페이지 즐겨찾기