오늘 :
13,944 / 140,525
어제 :
18,060 / 203,925
전체 :
19,989,719 / 274,846,632

Open API 공부

Naver, Daum, Google Open API

추천 수 : 11 / 0
조회 수 : 19988
2007.11.30 (11:27:03)


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

    function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(37.4419, -122.1419), 13);
        var mapTypeControl = new GMapTypeControl();
        var topRight = new GControlPosition(G_ANCHOR_TOP_RIGHT, new GSize(10,10));
        var bottomRight = new GControlPosition(G_ANCHOR_BOTTOM_RIGHT, new GSize(10,10));
        map.addControl(mapTypeControl, topRight);
        GEvent.addListener(map, "dblclick", function() {
          map.removeControl(mapTypeControl);
          map.addControl(new GMapTypeControl(), bottomRight);
        });
        map.addControl(new GSmallMapControl());
      }
    }

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

번호 제목 닉네임 등록일 조회 추천
22 icon-custom 첨부 파일
cyber
2007-11-30 17688 8
21 icon-simple 첨부 파일
cyber
2007-11-30 15892 14
20 marker-drag 첨부 파일
cyber
2007-11-30 17909 8
19 marker-simple 첨부 파일
cyber
2007-11-30 17372 10
18 control-localsearch 첨부 파일
cyber
2007-11-30 21319 4
17 control-custom 첨부 파일
cyber
2007-11-30 17923 11
Selected control-positioning 첨부 파일
cyber
2007-11-30 19988 11
15 control-simple 첨부 파일
cyber
2007-11-30 18096 17
14 event-mouseover 첨부 파일
cyber
2007-11-30 17824 15
13 event-removal 첨부 파일
cyber
2007-11-30 17386 16
Tag List