오늘 :
17,109 / 187,205
어제 :
18,060 / 203,925
전체 :
19,992,884 / 274,893,312

Open API 공부

Naver, Daum, Google Open API

추천 수 : 33 / 0
조회 수 : 28868
2007.11.30 (14:06:35)


http://www.subkorea.com/api/google/MapsAPI/trafficOverlay.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: Traffic Overlays</title>
    <script src="http://maps.google.com/maps?file=api&v=2&key=abc...xyz"
      type="text/javascript"></script>
    <script type="text/javascript">

    var map;
    var trafficInfo = new GTrafficOverlay();
    var toggleState = 1;

    function initialize() {
      if (GBrowserIsCompatible()) {
        map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(40.652513,-73.936615), 12);
        map.addControl(new GSmallMapControl());
        map.addOverlay(trafficInfo);
      }
    }
    
    function toggleTraffic() {
      if (toggleState == 1) {
        map.removeOverlay(trafficInfo);
        toggleState = 0;
      } else {
        map.addOverlay(trafficInfo);
        toggleState = 1;
      }
    }
    </script>
  </head>
  <body onload="initialize()">
    <div id="map_canvas" style="width: 640px; height: 480px; float:left; border: 1px solid black;"></div>
    <br clear="all"/>
    <br/>
    <input type="button" value="Toggle Traffic" onClick="toggleTraffic();"/>
    <br/>
  </body>
</html>

번호 제목 닉네임 등록일 조회 추천
52 marker-maptips3 첨부 파일
cyber
2007-11-30 17427 3
51 control-localsearch 첨부 파일
cyber
2007-11-30 21322 4
50 marker-maptips 첨부 파일
cyber
2007-11-30 19675 6
49 polyline-simple 첨부 파일
cyber
2007-11-30 21208 6
48 polyline-encoding 첨부 파일
cyber
2007-11-30 20822 6
47 xhr-requests 첨부 파일
cyber
2007-11-30 17746 6
46 marker-drag 첨부 파일
cyber
2007-11-30 17911 8
45 icon-custom 첨부 파일
cyber
2007-11-30 17692 8
44 polyline-geodesic 첨부 파일
cyber
2007-11-30 20789 8
43 tileoverlay-simple 첨부 파일
cyber
2007-11-30 17681 8
Tag List