오늘 :
1,252 / 4,646
어제 :
13,011 / 144,897
전체 :
19,662,211 / 272,669,214

Open API 공부

Naver, Daum, Google Open API

추천 수 : 20 / 0
조회 수 : 27643
2007.12.03 (23:30:39)


http://www.subkorea.com/api/google/MapsAPI/marker-scroll.html다수의 별도 링크 텍스트 (xml이용) 스크롤

<!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">
  <head>
    <title>Google Maps</title>
    <script src="http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAPDUET0Qt7p2VcSk6JNU1sBRRwPhutbWBmyj82Go_H6JlE7EvFBSKFFFHFePAwvib9UM0geoA3Pgafw" type="text/javascript"></script>
  </head>
  <body onunload="GUnload()">


    <!-- you can use tables or divs for the overall layout -->
    <table border=1>
      <tr>
        <td>
           <div id="map" style="width: 550px; height: 450px"></div>
        </td>
        <td width = 150 valign="top" style="text-decoration: underline; color: #4444ff;">
           <!-- =========== side_bar with scroll bar ================= -->
           <div id="side_bar"  style="overflow:auto; height:450px;"></div>
           <!-- ===================================================== -->
        </td>
      </tr>
    </table>
    <a href="basic15.htm">Back to the tutorial page</a>


    <noscript><b>JavaScript must be enabled in order for you to use Google Maps.</b>
      However, it seems JavaScript is either disabled or not supported by your browser.
      To view Google Maps, enable JavaScript by changing your browser options, and then
      try again.
    </noscript>


    <script type="text/javascript">
    //<![CDATA[

    if (GBrowserIsCompatible()) {
      var side_bar_html = "";
      var gmarkers = [];
      var htmls = [];
      var i = 0;


      // A function to create the marker and set up the event window
      function createMarker(point,name,html) {
        var marker = new GMarker(point);
        GEvent.addListener(marker, "click", function() {
          marker.openInfoWindowHtml(html);
        });
        gmarkers[i] = marker;
        htmls[i] = html;
        side_bar_html += '<a href="javascript:myclick(' + i + ')">' + name + '</a><br>';
        i++;
        return marker;
      }

      function myclick(i) {
        gmarkers[i].openInfoWindowHtml(htmls[i]);
      }

      // create the map
      var map = new GMap2(document.getElementById("map"));
      map.addControl(new GLargeMapControl());
      map.addControl(new GMapTypeControl());
      map.setCenter(new GLatLng( 43.907787,-79.359741), 9);


      // Read the data from 100.xml
      
      GDownloadUrl("100.xml", function (doc) {
        var xmlDoc = GXml.parse(doc);
        var markers = xmlDoc.documentElement.getElementsByTagName("marker");
          
        for (var i = 0; i < markers.length; i++) {
          // obtain the attribues of each marker
          var lat = parseFloat(markers[i].getAttribute("lat"));
          var lng = parseFloat(markers[i].getAttribute("lng"));
          var point = new GLatLng(lat,lng);
          var html = markers[i].getAttribute("html");
          var label = markers[i].getAttribute("label");
          // create the marker
          var marker = createMarker(point,label,html);
          map.addOverlay(marker);
        }
        document.getElementById("side_bar").innerHTML = side_bar_html;
      });
    }

    else {
      alert("Sorry, the Google Maps API is not compatible with this browser");
    }
    // This Javascript is based on code provided by the
    // Blackpool Community Church Javascript Team
    // http://www.commchurch.freeserve.co.uk/  
    // http://econym.googlepages.com/index.htm

    //]]>
    </script>
  </body>

</html>

번호 제목 닉네임 등록일 조회 추천
Selected marker-scroll 첨부 파일
cyber
2007-12-03 27643 20
51 directions-advanced 첨부 파일
cyber
2007-11-30 27660 23
50 directions-simple 첨부 파일
cyber
2007-11-30 27961 17
49 trafficOverlay 첨부 파일
cyber
2007-11-30 28361 33
48 geo-xml 첨부 파일
cyber
2007-11-30 27467 11
47 geoxml-kml 첨부 파일
cyber
2007-11-30 32468 11
46 geoxml-rss 첨부 파일
cyber
2007-11-30 24905 14
45 geocoding-cache 첨부 파일
cyber
2007-11-30 25922 21
44 geocoding-extraction 첨부 파일
cyber
2007-11-30 20032 15
43 geocoding-simple 첨부 파일
cyber
2007-11-30 24837 12
Tag List