구글 지도 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,466
13년 전 조회 2,681
13년 전 조회 1,411
13년 전 조회 1,760
13년 전 조회 2,438
13년 전 조회 1,781
13년 전 조회 1,422
13년 전 조회 2,154
13년 전 조회 4,430
13년 전 조회 1,156
13년 전 조회 1,224
13년 전 조회 1,387
13년 전 조회 4,501
13년 전 조회 1,851
13년 전 조회 2,050
13년 전 조회 2,060
13년 전 조회 1,354
13년 전 조회 1,217
13년 전 조회 1,376
13년 전 조회 2,193
13년 전 조회 1,544
13년 전 조회 1,863
13년 전 조회 3,062
13년 전 조회 1,538
13년 전 조회 1,865
13년 전 조회 1,931
13년 전 조회 1,303
13년 전 조회 4,045
13년 전 조회 1,816
13년 전 조회 3,364
13년 전 조회 1,663
13년 전 조회 1,393
13년 전 조회 1,404
13년 전 조회 1,279
13년 전 조회 1,825
13년 전 조회 1,976
13년 전 조회 3,283
13년 전 조회 4,921
13년 전 조회 1,297
13년 전 조회 3,868
13년 전 조회 1,234
13년 전 조회 1,723
13년 전 조회 1,328
13년 전 조회 1,679
13년 전 조회 2,447
13년 전 조회 1,840
13년 전 조회 1,234
13년 전 조회 1,897
13년 전 조회 1,510
13년 전 조회 1,916
13년 전 조회 2,352
13년 전 조회 1,744
13년 전 조회 1,318
13년 전 조회 2,569
13년 전 조회 1,823
13년 전 조회 1,368
13년 전 조회 1,298
13년 전 조회 1,694
13년 전 조회 1,221
13년 전 조회 2,399
13년 전 조회 1,626
13년 전 조회 1,605
13년 전 조회 1,266
13년 전 조회 1,970
13년 전 조회 2,783
13년 전 조회 1,211
13년 전 조회 1,097
13년 전 조회 1,346
13년 전 조회 3,964
13년 전 조회 1,376
13년 전 조회 1,944
13년 전 조회 1,720
13년 전 조회 1,324
13년 전 조회 8,406
13년 전 조회 1,719
13년 전 조회 2,389
13년 전 조회 1,360
13년 전 조회 1,707
13년 전 조회 1,559
13년 전 조회 2,540
13년 전 조회 3,964
13년 전 조회 2,200
13년 전 조회 3,895
13년 전 조회 2,069
13년 전 조회 4,505
13년 전 조회 2,038
13년 전 조회 1,568
13년 전 조회 2,517
13년 전 조회 3,276
13년 전 조회 2,204
13년 전 조회 2,020
13년 전 조회 3,796
13년 전 조회 1,805
13년 전 조회 1,339
13년 전 조회 2,257
13년 전 조회 1,469
13년 전 조회 5,820
13년 전 조회 1,450
13년 전 조회 1,853
13년 전 조회 1,431