구글 지도 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,628
13년 전 조회 2,861
13년 전 조회 1,588
13년 전 조회 1,955
13년 전 조회 2,626
13년 전 조회 1,979
13년 전 조회 1,615
13년 전 조회 2,333
13년 전 조회 4,616
13년 전 조회 1,330
13년 전 조회 1,421
13년 전 조회 1,564
13년 전 조회 4,683
13년 전 조회 2,029
13년 전 조회 2,240
13년 전 조회 2,261
13년 전 조회 1,543
13년 전 조회 1,415
13년 전 조회 1,575
13년 전 조회 2,397
13년 전 조회 1,742
13년 전 조회 2,043
13년 전 조회 3,229
13년 전 조회 1,728
13년 전 조회 2,034
13년 전 조회 2,100
13년 전 조회 1,512
13년 전 조회 4,211
13년 전 조회 1,979
13년 전 조회 3,549
13년 전 조회 1,853
13년 전 조회 1,566
13년 전 조회 1,614
13년 전 조회 1,459
13년 전 조회 1,995
13년 전 조회 2,145
13년 전 조회 3,484
13년 전 조회 5,047
13년 전 조회 1,486
13년 전 조회 4,019
13년 전 조회 1,416
13년 전 조회 1,898
13년 전 조회 1,519
13년 전 조회 1,849
13년 전 조회 2,596
13년 전 조회 1,958
13년 전 조회 1,392
13년 전 조회 2,076
13년 전 조회 1,686
13년 전 조회 2,089
13년 전 조회 2,530
13년 전 조회 1,901
13년 전 조회 1,500
13년 전 조회 2,680
13년 전 조회 1,984
13년 전 조회 1,536
13년 전 조회 1,462
13년 전 조회 1,867
13년 전 조회 1,368
13년 전 조회 2,514
13년 전 조회 1,807
13년 전 조회 1,781
13년 전 조회 1,431
13년 전 조회 2,092
13년 전 조회 2,901
13년 전 조회 1,399
13년 전 조회 1,286
13년 전 조회 1,509
13년 전 조회 4,078
13년 전 조회 1,546
13년 전 조회 2,093
13년 전 조회 1,888
13년 전 조회 1,501
13년 전 조회 8,553
13년 전 조회 1,891
13년 전 조회 2,550
13년 전 조회 1,546
13년 전 조회 1,896
13년 전 조회 1,732
13년 전 조회 2,741
13년 전 조회 4,149
13년 전 조회 2,370
13년 전 조회 4,060
13년 전 조회 2,250
13년 전 조회 4,676
13년 전 조회 2,217
13년 전 조회 1,739
13년 전 조회 2,692
13년 전 조회 3,477
13년 전 조회 2,382
13년 전 조회 2,212
13년 전 조회 3,979
14년 전 조회 1,988
14년 전 조회 1,526
14년 전 조회 2,444
14년 전 조회 1,654
14년 전 조회 5,984
14년 전 조회 1,643
14년 전 조회 2,027
14년 전 조회 1,603