COMING SOON 🚀

구글 지도 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,700
13년 전 조회 2,937
13년 전 조회 1,644
13년 전 조회 2,018
13년 전 조회 2,693
13년 전 조회 2,027
13년 전 조회 1,667
13년 전 조회 2,395
13년 전 조회 4,677
13년 전 조회 1,403
13년 전 조회 1,483
13년 전 조회 1,638
13년 전 조회 4,744
13년 전 조회 2,108
13년 전 조회 2,314
13년 전 조회 2,327
13년 전 조회 1,606
13년 전 조회 1,479
13년 전 조회 1,636
13년 전 조회 2,460
13년 전 조회 1,786
13년 전 조회 2,104
13년 전 조회 3,287
13년 전 조회 1,782
13년 전 조회 2,084
13년 전 조회 2,167
13년 전 조회 1,566
13년 전 조회 4,276
13년 전 조회 2,057
13년 전 조회 3,606
13년 전 조회 1,920
13년 전 조회 1,619
13년 전 조회 1,661
13년 전 조회 1,516
13년 전 조회 2,032
13년 전 조회 2,193
13년 전 조회 3,537
13년 전 조회 5,108
13년 전 조회 1,548
13년 전 조회 4,076
13년 전 조회 1,478
13년 전 조회 1,967
13년 전 조회 1,572
13년 전 조회 1,896
13년 전 조회 2,666
13년 전 조회 2,024
13년 전 조회 1,461
13년 전 조회 2,122
13년 전 조회 1,738
13년 전 조회 2,135
13년 전 조회 2,589
13년 전 조회 1,954
13년 전 조회 1,562
13년 전 조회 2,747
13년 전 조회 2,041
13년 전 조회 1,611
13년 전 조회 1,520
13년 전 조회 1,936
13년 전 조회 1,427
13년 전 조회 2,573
13년 전 조회 1,859
13년 전 조회 1,847
13년 전 조회 1,488
13년 전 조회 2,160
13년 전 조회 2,954
13년 전 조회 1,459
14년 전 조회 1,335
14년 전 조회 1,558
14년 전 조회 4,141
14년 전 조회 1,603
14년 전 조회 2,155
14년 전 조회 1,955
14년 전 조회 1,559
14년 전 조회 8,605
14년 전 조회 1,951
14년 전 조회 2,605
14년 전 조회 1,606
14년 전 조회 1,959
14년 전 조회 1,790
14년 전 조회 2,775
14년 전 조회 4,199
14년 전 조회 2,423
14년 전 조회 4,119
14년 전 조회 2,299
14년 전 조회 4,728
14년 전 조회 2,278
14년 전 조회 1,811
14년 전 조회 2,760
14년 전 조회 3,556
14년 전 조회 2,437
14년 전 조회 2,273
14년 전 조회 4,035
14년 전 조회 2,052
14년 전 조회 1,600
14년 전 조회 2,495
14년 전 조회 1,715
14년 전 조회 6,040
14년 전 조회 1,693
14년 전 조회 2,071
14년 전 조회 1,666