오늘 :
10,658 / 86,999
어제 :
18,060 / 203,925
전체 :
19,986,433 / 274,793,106

Open API 공부

Naver, Daum, Google Open API

추천 수 : 16 / 0
조회 수 : 17382
2007.11.30 (11:18:37)


http://www.subkorea.com/api/google/MapsAPI/event-removal.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 Removal</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);
      var myEventListener = GEvent.bind(this.map, "click", this, function(marker,latlng) {
         if (this.counter == 0) {
           if (latlng) {
             this.map.addOverlay(new GMarker(latlng))
             this.counter++;
           } else {
             // This code is never executed as the event listener is
             // removed the second time this event is triggered
             this.removeOverlay(marker)
           }
         } else {
           GEvent.removeListener(myEventListener);
         }
      });
    }

    function initialize() {
      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>

번호 제목 닉네임 등록일 조회 추천
22 icon-custom 첨부 파일
cyber
2007-11-30 17686 8
21 icon-simple 첨부 파일
cyber
2007-11-30 15888 14
20 marker-drag 첨부 파일
cyber
2007-11-30 17906 8
19 marker-simple 첨부 파일
cyber
2007-11-30 17367 10
18 control-localsearch 첨부 파일
cyber
2007-11-30 21308 4
17 control-custom 첨부 파일
cyber
2007-11-30 17922 11
16 control-positioning 첨부 파일
cyber
2007-11-30 19985 11
15 control-simple 첨부 파일
cyber
2007-11-30 18092 17
14 event-mouseover 첨부 파일
cyber
2007-11-30 17821 15
Selected event-removal 첨부 파일
cyber
2007-11-30 17382 16
Tag List