구글 지도 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,405
13년 전 조회 2,622
13년 전 조회 1,353
13년 전 조회 1,699
13년 전 조회 2,384
13년 전 조회 1,720
13년 전 조회 1,366
13년 전 조회 2,096
13년 전 조회 4,373
13년 전 조회 1,096
13년 전 조회 1,168
13년 전 조회 1,342
13년 전 조회 4,448
13년 전 조회 1,795
13년 전 조회 2,000
13년 전 조회 2,014
13년 전 조회 1,306
13년 전 조회 1,168
13년 전 조회 1,329
13년 전 조회 2,133
13년 전 조회 1,494
13년 전 조회 1,807
13년 전 조회 3,006
13년 전 조회 1,490
13년 전 조회 1,808
13년 전 조회 1,888
13년 전 조회 1,258
13년 전 조회 3,998
13년 전 조회 1,773
13년 전 조회 3,311
13년 전 조회 1,624
13년 전 조회 1,338
13년 전 조회 1,359
13년 전 조회 1,237
13년 전 조회 1,779
13년 전 조회 1,920
13년 전 조회 3,239
13년 전 조회 4,876
13년 전 조회 1,253
13년 전 조회 3,828
13년 전 조회 1,193
13년 전 조회 1,671
13년 전 조회 1,279
13년 전 조회 1,624
13년 전 조회 2,394
13년 전 조회 1,790
13년 전 조회 1,182
13년 전 조회 1,847
13년 전 조회 1,465
13년 전 조회 1,862
13년 전 조회 2,311
13년 전 조회 1,685
13년 전 조회 1,274
13년 전 조회 2,533
13년 전 조회 1,775
13년 전 조회 1,315
13년 전 조회 1,252
13년 전 조회 1,643
13년 전 조회 1,176
13년 전 조회 2,357
13년 전 조회 1,580
13년 전 조회 1,556
13년 전 조회 1,220
13년 전 조회 1,934
13년 전 조회 2,747
13년 전 조회 1,160
13년 전 조회 1,055
13년 전 조회 1,289
13년 전 조회 3,926
13년 전 조회 1,325
13년 전 조회 1,895
13년 전 조회 1,675
13년 전 조회 1,279
13년 전 조회 8,372
13년 전 조회 1,665
13년 전 조회 2,331
13년 전 조회 1,309
13년 전 조회 1,667
13년 전 조회 1,503
13년 전 조회 2,492
13년 전 조회 3,916
13년 전 조회 2,153
13년 전 조회 3,844
13년 전 조회 2,013
13년 전 조회 4,457
13년 전 조회 1,971
13년 전 조회 1,506
13년 전 조회 2,461
13년 전 조회 3,226
13년 전 조회 2,147
13년 전 조회 1,959
13년 전 조회 3,744
13년 전 조회 1,748
13년 전 조회 1,291
13년 전 조회 2,220
13년 전 조회 1,414
13년 전 조회 5,766
13년 전 조회 1,402
13년 전 조회 1,804
13년 전 조회 1,370