오늘 :
5,430 / 48,495
어제 :
11,673 / 102,916
전체 :
19,653,378 / 272,568,166

Open API 공부

Naver, Daum, Google Open API

추천 수 : 8 / 0
조회 수 : 20516
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 17471 6
51 trafficOverlay 첨부 파일
cyber
2007-11-30 28342 33
50 tileoverlay-simple 첨부 파일
cyber
2007-11-30 17431 8
49 tile-detector 첨부 파일
cyber
2007-11-30 16579 8
48 polyline-simple 첨부 파일
cyber
2007-11-30 20932 6
Selected polyline-geodesic 첨부 파일
cyber
2007-11-30 20516 8
46 polyline-encoding 첨부 파일
cyber
2007-11-30 20552 6
45 polygon-simple 첨부 파일
cyber
2007-11-30 17374 16
44 overlay-custom 첨부 파일
cyber
2007-11-30 19488 12
43 markermanager-weathermap 첨부 파일
cyber
2007-11-30 17580 11
Tag List