구글 지도 API 에서요...

구글 지도 API 를 공부하고 있는 왕초보 입니다. ^^

구글에서는 튜토리얼 예제를 제공하고 있는데요.

아래는 지도 가운데 마커를 하고 설명으로..Hello World! 를 보여주는 예제 입니다.

그런데.. 다른 주변에 마커 하나를 더 찍으려면 어떻게 해야하는지요 ? ㅠㅠ

고수님들의 답변을 바랍니다. ㅠㅠ





<!DOCTYPE html>
<html DIR="LTR">
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no"  /> <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Google Maps JavaScript API v3 예제: 간단한 이벤트</title>
<link href="/maps/documentation/javascript/examples/default.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="https://maps.google.com/maps/api/js?sensor=false"></script>
<script type="text/javascript">
 var map;
 function initialize() {
   var myLatlng = new google.maps.LatLng(-25.363882,131.044922);
   var myOptions = {
     zoom: 4,
     center: myLatlng,
     mapTypeId: google.maps.MapTypeId.ROADMAP
   }
   map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

   google.maps.event.addListener(map, 'zoom_changed', function() {
     setTimeout(moveToDarwin, 1500);
   });

   var marker = new google.maps.Marker({
       position: myLatlng,
       map: map,
       title:"Hello World!"
   });
   google.maps.event.addListener(marker, 'click', function() {
     map.setZoom(8);
   });
 }

 function moveToDarwin() {
   var darwin = new google.maps.LatLng(-12.461334, 130.841904);
   map.setCenter(darwin);
 }

</script>
</head>
<body onload="initialize()">
 <div id="map_canvas"></div>
</body>
</html>
|

댓글 1개

var marker = new google.maps.Marker({
position: myLatlng,
map: map,
title:"Hello World!"
});
윗 부분을 한번더 써주시면 됩니다.
//표시할 위치
var myLatlng2 = new google.maps.LatLng(표시할 위치 좌표값,표시할 위치 좌표값);
//마커생성
var marker2 = new google.maps.Marker({
position: myLatlng2,
map: map,
title:"따이뜰!"
});
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

+
제목 글쓴이 날짜 조회
13년 전 조회 1,824
13년 전 조회 3,045
13년 전 조회 1,746
13년 전 조회 2,123
13년 전 조회 2,807
13년 전 조회 2,141
13년 전 조회 1,804
13년 전 조회 2,512
13년 전 조회 4,803
13년 전 조회 1,525
13년 전 조회 1,619
13년 전 조회 1,781
13년 전 조회 4,864
13년 전 조회 2,227
13년 전 조회 2,444
13년 전 조회 2,448
13년 전 조회 1,735
13년 전 조회 1,601
13년 전 조회 1,761
13년 전 조회 2,572
13년 전 조회 1,908
13년 전 조회 2,243
13년 전 조회 3,407
13년 전 조회 1,891
13년 전 조회 2,198
13년 전 조회 2,304
13년 전 조회 1,683
13년 전 조회 4,405
13년 전 조회 2,188
13년 전 조회 3,722
13년 전 조회 2,039
13년 전 조회 1,735
13년 전 조회 1,787
13년 전 조회 1,641
13년 전 조회 2,168
13년 전 조회 2,297
13년 전 조회 3,644
13년 전 조회 5,218
13년 전 조회 1,644
13년 전 조회 4,205
13년 전 조회 1,603
13년 전 조회 2,070
13년 전 조회 1,680
13년 전 조회 2,025
13년 전 조회 2,776
13년 전 조회 2,120
13년 전 조회 1,572
13년 전 조회 2,244
13년 전 조회 1,852
14년 전 조회 2,251
14년 전 조회 2,705
14년 전 조회 2,054
14년 전 조회 1,669
14년 전 조회 2,872
14년 전 조회 2,144
14년 전 조회 1,728
14년 전 조회 1,637
14년 전 조회 2,038
14년 전 조회 1,538
14년 전 조회 2,711
14년 전 조회 1,965
14년 전 조회 1,972
14년 전 조회 1,609
14년 전 조회 2,270
14년 전 조회 3,072
14년 전 조회 1,578
14년 전 조회 1,467
14년 전 조회 1,677
14년 전 조회 4,262
14년 전 조회 1,730
14년 전 조회 2,268
14년 전 조회 2,068
14년 전 조회 1,684
14년 전 조회 8,718
14년 전 조회 2,050
14년 전 조회 2,727
14년 전 조회 1,719
14년 전 조회 2,089
14년 전 조회 1,919
14년 전 조회 2,877
14년 전 조회 4,316
14년 전 조회 2,536
14년 전 조회 4,231
14년 전 조회 2,412
14년 전 조회 4,845
14년 전 조회 2,393
14년 전 조회 1,951
14년 전 조회 2,876
14년 전 조회 3,674
14년 전 조회 2,567
14년 전 조회 2,391
14년 전 조회 4,159
14년 전 조회 2,186
14년 전 조회 1,721
14년 전 조회 2,617
14년 전 조회 1,825
14년 전 조회 6,166
14년 전 조회 1,815
14년 전 조회 2,189
14년 전 조회 1,799