오늘 :
5,381 / 183,583
어제 :
7,297 / 333,023
전체 :
22,349,072 / 325,775,811

Open API 공부

Naver, Daum, Google Open API

추천 수 : 6 / 0
조회 수 : 20575
2007.11.30 (12:55:32)


http://www.subkorea.com/api/google/MapsAPI/marker-maptips.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=abc...xyz" type="text/javascript"></script>
  </head>
  <body>


    <!-- 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;">
           <div id="side_bar"></div>
        </td>
      </tr>
    </table>
    <a href="tooltips.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 with a tooltip
      function createMarker(point,name,html) {
        html = '<div style="white-space:nowrap;">' + html + '</div>';

        // === marker with tooltip ===
        var marker = new GMarker(point, {title:name});
        // ===========================
        
        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++;
        
        map.addOverlay(marker);

      }


      // This function picks up the click and opens the corresponding info window
      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 example.xml
      var request = GXmlHttp.create();
      request.open("GET", "example.xml", true);
      request.onreadystatechange = function() {
        if (request.readyState == 4) {
          var xmlDoc = GXml.parse(request.responseText);
          // obtain the array of markers and loop through it
          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);
          }
          // put the assembled side_bar_html contents into the side_bar div
          document.getElementById("side_bar").innerHTML = side_bar_html;
        }
      }
      request.send(null);
    }

    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>

번호 제목 닉네임 등록일 조회 추천
32 marker-tabbed 첨부 파일
cyber
2007-11-30 16928 12
31 marker-manager 첨부 파일
cyber
2007-11-30 18689 20
30 marker-maptips3 첨부 파일
cyber
2007-11-30 18394 3
29 marker-maptips2 첨부 파일
cyber
2007-11-30 15324 9
Selected marker-maptips 첨부 파일
cyber
2007-11-30 20575 6
27 marker-window 첨부 파일
cyber
2007-11-30 17491 16
26 marker-3exp 첨부 파일
cyber
2007-11-30 18200 16
25 markermanager-googleoffices 첨부 파일
cyber
2007-11-30 15572 11
24 markermanager-weathermap 첨부 파일
cyber
2007-11-30 19043 11
23 icon-geicons 첨부 파일
cyber
2007-11-30 18867 20
Tag List