구글 지도 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,829
13년 전 조회 3,051
13년 전 조회 1,754
13년 전 조회 2,131
13년 전 조회 2,813
13년 전 조회 2,151
13년 전 조회 1,810
13년 전 조회 2,519
13년 전 조회 4,805
13년 전 조회 1,533
13년 전 조회 1,623
13년 전 조회 1,783
13년 전 조회 4,874
13년 전 조회 2,236
13년 전 조회 2,446
13년 전 조회 2,458
13년 전 조회 1,737
13년 전 조회 1,607
13년 전 조회 1,766
13년 전 조회 2,577
13년 전 조회 1,913
13년 전 조회 2,247
13년 전 조회 3,412
13년 전 조회 1,896
13년 전 조회 2,204
13년 전 조회 2,313
13년 전 조회 1,688
13년 전 조회 4,410
13년 전 조회 2,194
13년 전 조회 3,728
13년 전 조회 2,047
13년 전 조회 1,743
13년 전 조회 1,795
13년 전 조회 1,650
13년 전 조회 2,172
13년 전 조회 2,305
13년 전 조회 3,652
13년 전 조회 5,226
13년 전 조회 1,649
13년 전 조회 4,216
13년 전 조회 1,605
13년 전 조회 2,077
13년 전 조회 1,687
13년 전 조회 2,030
13년 전 조회 2,780
13년 전 조회 2,126
13년 전 조회 1,577
13년 전 조회 2,248
13년 전 조회 1,859
14년 전 조회 2,257
14년 전 조회 2,709
14년 전 조회 2,066
14년 전 조회 1,679
14년 전 조회 2,875
14년 전 조회 2,149
14년 전 조회 1,730
14년 전 조회 1,645
14년 전 조회 2,045
14년 전 조회 1,542
14년 전 조회 2,715
14년 전 조회 1,973
14년 전 조회 1,977
14년 전 조회 1,613
14년 전 조회 2,274
14년 전 조회 3,079
14년 전 조회 1,583
14년 전 조회 1,468
14년 전 조회 1,683
14년 전 조회 4,267
14년 전 조회 1,737
14년 전 조회 2,274
14년 전 조회 2,071
14년 전 조회 1,687
14년 전 조회 8,726
14년 전 조회 2,057
14년 전 조회 2,732
14년 전 조회 1,726
14년 전 조회 2,097
14년 전 조회 1,922
14년 전 조회 2,883
14년 전 조회 4,322
14년 전 조회 2,542
14년 전 조회 4,235
14년 전 조회 2,416
14년 전 조회 4,851
14년 전 조회 2,398
14년 전 조회 1,958
14년 전 조회 2,879
14년 전 조회 3,678
14년 전 조회 2,574
14년 전 조회 2,396
14년 전 조회 4,163
14년 전 조회 2,194
14년 전 조회 1,725
14년 전 조회 2,620
14년 전 조회 1,829
14년 전 조회 6,166
14년 전 조회 1,818
14년 전 조회 2,196
14년 전 조회 1,803