구글 지도 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,792
13년 전 조회 3,022
13년 전 조회 1,720
13년 전 조회 2,090
13년 전 조회 2,770
13년 전 조회 2,113
13년 전 조회 1,762
13년 전 조회 2,475
13년 전 조회 4,767
13년 전 조회 1,496
13년 전 조회 1,588
13년 전 조회 1,742
13년 전 조회 4,829
13년 전 조회 2,195
13년 전 조회 2,407
13년 전 조회 2,421
13년 전 조회 1,702
13년 전 조회 1,575
13년 전 조회 1,735
13년 전 조회 2,541
13년 전 조회 1,878
13년 전 조회 2,210
13년 전 조회 3,378
13년 전 조회 1,859
13년 전 조회 2,167
13년 전 조회 2,275
13년 전 조회 1,654
13년 전 조회 4,370
13년 전 조회 2,153
13년 전 조회 3,689
13년 전 조회 2,001
13년 전 조회 1,694
13년 전 조회 1,750
13년 전 조회 1,605
13년 전 조회 2,134
13년 전 조회 2,273
13년 전 조회 3,617
13년 전 조회 5,190
13년 전 조회 1,622
13년 전 조회 4,177
13년 전 조회 1,570
13년 전 조회 2,048
13년 전 조회 1,655
13년 전 조회 1,995
13년 전 조회 2,747
13년 전 조회 2,088
13년 전 조회 1,549
13년 전 조회 2,206
13년 전 조회 1,824
13년 전 조회 2,217
13년 전 조회 2,673
13년 전 조회 2,026
14년 전 조회 1,646
14년 전 조회 2,842
14년 전 조회 2,116
14년 전 조회 1,700
14년 전 조회 1,615
14년 전 조회 2,011
14년 전 조회 1,504
14년 전 조회 2,669
14년 전 조회 1,930
14년 전 조회 1,942
14년 전 조회 1,572
14년 전 조회 2,241
14년 전 조회 3,044
14년 전 조회 1,549
14년 전 조회 1,434
14년 전 조회 1,647
14년 전 조회 4,228
14년 전 조회 1,691
14년 전 조회 2,238
14년 전 조회 2,040
14년 전 조회 1,650
14년 전 조회 8,695
14년 전 조회 2,026
14년 전 조회 2,696
14년 전 조회 1,691
14년 전 조회 2,062
14년 전 조회 1,880
14년 전 조회 2,850
14년 전 조회 4,279
14년 전 조회 2,507
14년 전 조회 4,200
14년 전 조회 2,388
14년 전 조회 4,816
14년 전 조회 2,366
14년 전 조회 1,915
14년 전 조회 2,845
14년 전 조회 3,641
14년 전 조회 2,538
14년 전 조회 2,359
14년 전 조회 4,129
14년 전 조회 2,146
14년 전 조회 1,695
14년 전 조회 2,580
14년 전 조회 1,801
14년 전 조회 6,133
14년 전 조회 1,784
14년 전 조회 2,156
14년 전 조회 1,772