구글 지도 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,977
13년 전 조회 3,202
13년 전 조회 1,912
13년 전 조회 2,285
13년 전 조회 2,961
13년 전 조회 2,289
13년 전 조회 1,955
13년 전 조회 2,667
13년 전 조회 4,948
13년 전 조회 1,668
13년 전 조회 1,755
13년 전 조회 1,899
13년 전 조회 5,013
13년 전 조회 2,373
13년 전 조회 2,584
14년 전 조회 2,581
14년 전 조회 1,882
14년 전 조회 1,732
14년 전 조회 1,901
14년 전 조회 2,709
14년 전 조회 2,050
14년 전 조회 2,372
14년 전 조회 3,563
14년 전 조회 2,026
14년 전 조회 2,347
14년 전 조회 2,451
14년 전 조회 1,806
14년 전 조회 4,561
14년 전 조회 2,334
14년 전 조회 3,866
14년 전 조회 2,189
14년 전 조회 1,861
14년 전 조회 1,915
14년 전 조회 1,762
14년 전 조회 2,305
14년 전 조회 2,427
14년 전 조회 3,779
14년 전 조회 5,365
14년 전 조회 1,765
14년 전 조회 4,341
14년 전 조회 1,741
14년 전 조회 2,207
14년 전 조회 1,817
14년 전 조회 2,161
14년 전 조회 2,912
14년 전 조회 2,253
14년 전 조회 1,700
14년 전 조회 2,374
14년 전 조회 2,002
14년 전 조회 2,381
14년 전 조회 2,846
14년 전 조회 2,212
14년 전 조회 1,821
14년 전 조회 2,998
14년 전 조회 2,280
14년 전 조회 1,869
14년 전 조회 1,792
14년 전 조회 2,185
14년 전 조회 1,685
14년 전 조회 2,855
14년 전 조회 2,107
14년 전 조회 2,102
14년 전 조회 1,748
14년 전 조회 2,412
14년 전 조회 3,217
14년 전 조회 1,722
14년 전 조회 1,606
14년 전 조회 1,824
14년 전 조회 4,399
14년 전 조회 1,873
14년 전 조회 2,405
14년 전 조회 2,202
14년 전 조회 1,830
14년 전 조회 8,861
14년 전 조회 2,184
14년 전 조회 2,883
14년 전 조회 1,865
14년 전 조회 2,240
14년 전 조회 2,051
14년 전 조회 3,023
14년 전 조회 4,453
14년 전 조회 2,685
14년 전 조회 4,373
14년 전 조회 2,542
14년 전 조회 4,992
14년 전 조회 2,536
14년 전 조회 2,065
14년 전 조회 2,999
14년 전 조회 3,797
14년 전 조회 2,687
14년 전 조회 2,522
14년 전 조회 4,285
14년 전 조회 2,307
14년 전 조회 1,846
14년 전 조회 2,744
14년 전 조회 1,941
14년 전 조회 6,294
14년 전 조회 1,951
14년 전 조회 2,328
14년 전 조회 1,928