오늘 :
12,377 / 92,607
어제 :
18,021 / 177,351
전체 :
20,076,763 / 275,521,347

Open API 공부

Naver, Daum, Google Open API

cyber
추천 수 : 6 / 0
조회 수 : 17819
2007.11.30 (13:54:23)


http://www.subkorea.com/api/google/MapsAPI/xhr-requests.htm마크4개, 콘트롤, 지도 버튼

<!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: Asynchronous Data Retrieval</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()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        map.addControl(new GSmallMapControl());
        map.addControl(new GMapTypeControl());

        // Download the data in data.xml and load it on the map. The format we
        // expect is:
        // <markers>
        //   <marker lat="37.441" lng="-122.141"/>
        //   <marker lat="37.322" lng="-121.213"/>
        // </markers>
        GDownloadUrl("./include/data.xml", function(data) {
          var xml = GXml.parse(data);
          var markers = xml.documentElement.getElementsByTagName("marker");
          for (var i = 0; i < markers.length; i++) {
            var latlng = new GLatLng(parseFloat(markers[i].getAttribute("lat")),
                                    parseFloat(markers[i].getAttribute("lng")));
            map.addOverlay(new GMarker(latlng));
          }
        });
      }
    }
    
    </script>
  </head>
  <body onload="initialize()" onunload="GUnload()">
    <div id="map_canvas" style="width: 500px; height: 300px"></div>
  </body>
</html>

번호 제목 닉네임 등록일 조회 추천
Selected xhr-requests 첨부 파일
cyber
2007-11-30 17819 6
41 overlay-custom 첨부 파일
cyber
2007-11-30 19798 12
40 tile-detector 첨부 파일
cyber
2007-11-30 16923 8
39 tileoverlay-simple 첨부 파일
cyber
2007-11-30 17756 8
38 groundoverlay-simple 첨부 파일
cyber
2007-11-30 17462 12
37 polygon-simple 첨부 파일
cyber
2007-11-30 17715 16
36 polyline-encoding 첨부 파일
cyber
2007-11-30 20888 6
35 polyline-geodesic 첨부 파일
cyber
2007-11-30 20866 8
34 polyline-simple 첨부 파일
cyber
2007-11-30 21289 6
33 marker-textfiles 첨부 파일
cyber
2007-11-30 18981 23
Tag List