오늘 :
20,136 / 147,244
어제 :
20,283 / 189,995
전체 :
20,713,126 / 282,147,217

Open API 공부

Naver, Daum, Google Open API

cyber
추천 수 : 19 / 0
조회 수 : 20212
2007.11.30 (11:17:18)


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

    function MyApplication() {
      this.counter = 0;
      this.map = new GMap2(document.getElementById("map_canvas"));
      this.map.setCenter(new GLatLng(37.4419, -122.1419), 13);
      GEvent.bind(this.map, "click", this, this.onMapClick);
    }
        
    MyApplication.prototype.onMapClick = function() {
      this.counter++;
      alert("You have clicked the map " + this.counter +
            (this.counter == 1 ?" time":" times"));
    }

    function initialize() {
      if (GBrowserIsCompatible()) {
        var application = new MyApplication();
      }
    }

    </script>
  </head>
  <body onload="initialize()">
    <div id="map_canvas" style="width: 500px; height: 300px"></div>
    <div id="message"></div>
  </body>
</html>

번호 제목 닉네임 등록일 조회 추천
Selected event-bind 첨부 파일
cyber
2007-11-30 20212 19
11 event-arguments 첨부 파일
cyber
2007-11-30 19718 10
10 event-closure 첨부 파일
cyber
2007-11-30 21110 15
9 event-context 첨부 파일
cyber
2007-11-30 21243 17
8 event-simple 첨부 파일
cyber
2007-11-30 19799 19
7 map-distance 첨부 파일
cyber
2007-11-30 22271 19
6 map-range 첨부 파일
cyber
2007-11-30 19190 27
5 map-dualmap 첨부 파일
cyber
2007-11-30 18462 15
4 map-infowindow 첨부 파일
cyber
2007-11-30 18528 16
3 map-animate 첨부 파일
cyber
2007-11-30 18920 12
Tag List