오늘 :
15,599 / 77,095
어제 :
16,669 / 90,698
전체 :
19,920,524 / 274,176,212

Open API 공부

Naver, Daum, Google Open API

추천 수 : 8 / 0
조회 수 : 20733
2007.11.30 (13:17:43)


http://www.subkorea.com/api/google/MapsAPI/polyline-geodesic.htm마크와 선(수동) 그어져 있음

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml">
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8"/>
    <title>Google Maps JavaScript API Example: Geodesic Polyline</title>
    <script src="http://maps.google.com/maps?file=api&v=2&key=abc...xyz"
            type="text/javascript"></script>
    <script type="text/javascript">
    function initialize() {
      if (GBrowserIsCompatible()) {
        
       function createLengthMarker(point) {
              var marker = new GMarker(point);
              var value = polyline.getLength();
              value = value / 1000;
              var message = "The length of this great circle is: " + value + " kilometers.";
              GEvent.addListener(marker,"click", function() {
                 var myHtml = message;
                 map.openInfoWindowHtml(point, myHtml);
              });
          return marker;
        }

        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(45.828799,-105.292969), 2);
        var polyOptions = {geodesic:true};
        var polyline = new GPolyline([
          new GLatLng(40.65642, -73.7883),
          new GLatLng(61.1699849, -149.944496)
        ], "#ff0000", 10, 1, polyOptions);
        map.addOverlay(polyline);
        map.addOverlay(createLengthMarker(new GLatLng(45.828799,-105.292969)));
      }
    }  
    </script>
  </head>
  <body onload="initialize()" onunload="GUnload()">
    <div id="map_canvas" style="width: 500px; height: 300px"></div>
    <div id="message"></div>
  </body>
</html>

번호 제목 닉네임 등록일 조회 추천
42 xhr-requests 첨부 파일
cyber
2007-11-30 17681 6
41 overlay-custom 첨부 파일
cyber
2007-11-30 19685 12
40 tile-detector 첨부 파일
cyber
2007-11-30 16800 8
39 tileoverlay-simple 첨부 파일
cyber
2007-11-30 17627 8
38 groundoverlay-simple 첨부 파일
cyber
2007-11-30 17373 12
37 polygon-simple 첨부 파일
cyber
2007-11-30 17581 16
36 polyline-encoding 첨부 파일
cyber
2007-11-30 20765 6
Selected polyline-geodesic 첨부 파일
cyber
2007-11-30 20733 8
34 polyline-simple 첨부 파일
cyber
2007-11-30 21148 6
33 marker-textfiles 첨부 파일
cyber
2007-11-30 18863 23
Tag List