오늘 :
19,940 / 177,921
어제 :
20,078 / 208,408
전체 :
20,390,739 / 279,129,873

Open API 공부

Naver, Daum, Google Open API

추천 수 : 8 / 0
조회 수 : 21074
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>

번호 제목 닉네임 등록일 조회 추천
52 xhr-requests 첨부 파일
cyber
2007-11-30 18014 6
51 trafficOverlay 첨부 파일
cyber
2007-11-30 29353 33
50 tileoverlay-simple 첨부 파일
cyber
2007-11-30 17948 8
49 tile-detector 첨부 파일
cyber
2007-11-30 17145 8
48 polyline-simple 첨부 파일
cyber
2007-11-30 21491 6
Selected polyline-geodesic 첨부 파일
cyber
2007-11-30 21074 8
46 polyline-encoding 첨부 파일
cyber
2007-11-30 21096 6
45 polygon-simple 첨부 파일
cyber
2007-11-30 17943 16
44 overlay-custom 첨부 파일
cyber
2007-11-30 19984 12
43 markermanager-weathermap 첨부 파일
cyber
2007-11-30 18080 11
Tag List