구글 지도 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,842
13년 전 조회 3,061
13년 전 조회 1,769
13년 전 조회 2,143
13년 전 조회 2,822
13년 전 조회 2,163
13년 전 조회 1,826
13년 전 조회 2,529
13년 전 조회 4,816
13년 전 조회 1,541
13년 전 조회 1,638
13년 전 조회 1,790
13년 전 조회 4,885
13년 전 조회 2,254
13년 전 조회 2,461
13년 전 조회 2,464
13년 전 조회 1,748
13년 전 조회 1,618
13년 전 조회 1,779
13년 전 조회 2,589
13년 전 조회 1,922
13년 전 조회 2,255
13년 전 조회 3,425
13년 전 조회 1,906
13년 전 조회 2,216
13년 전 조회 2,323
13년 전 조회 1,697
13년 전 조회 4,425
13년 전 조회 2,202
13년 전 조회 3,737
13년 전 조회 2,053
13년 전 조회 1,754
13년 전 조회 1,804
13년 전 조회 1,657
13년 전 조회 2,184
13년 전 조회 2,308
13년 전 조회 3,661
13년 전 조회 5,231
13년 전 조회 1,654
13년 전 조회 4,223
13년 전 조회 1,618
13년 전 조회 2,088
13년 전 조회 1,695
13년 전 조회 2,038
13년 전 조회 2,792
13년 전 조회 2,134
13년 전 조회 1,582
13년 전 조회 2,256
14년 전 조회 1,870
14년 전 조회 2,268
14년 전 조회 2,725
14년 전 조회 2,075
14년 전 조회 1,682
14년 전 조회 2,884
14년 전 조회 2,156
14년 전 조회 1,735
14년 전 조회 1,653
14년 전 조회 2,050
14년 전 조회 1,555
14년 전 조회 2,725
14년 전 조회 1,983
14년 전 조회 1,985
14년 전 조회 1,618
14년 전 조회 2,283
14년 전 조회 3,093
14년 전 조회 1,589
14년 전 조회 1,476
14년 전 조회 1,692
14년 전 조회 4,276
14년 전 조회 1,745
14년 전 조회 2,290
14년 전 조회 2,078
14년 전 조회 1,699
14년 전 조회 8,734
14년 전 조회 2,067
14년 전 조회 2,744
14년 전 조회 1,739
14년 전 조회 2,107
14년 전 조회 1,929
14년 전 조회 2,897
14년 전 조회 4,330
14년 전 조회 2,554
14년 전 조회 4,243
14년 전 조회 2,424
14년 전 조회 4,867
14년 전 조회 2,411
14년 전 조회 1,966
14년 전 조회 2,889
14년 전 조회 3,691
14년 전 조회 2,584
14년 전 조회 2,408
14년 전 조회 4,181
14년 전 조회 2,204
14년 전 조회 1,736
14년 전 조회 2,625
14년 전 조회 1,845
14년 전 조회 6,179
14년 전 조회 1,831
14년 전 조회 2,210
14년 전 조회 1,811