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,721
13년 전 조회 2,956
13년 전 조회 1,657
13년 전 조회 2,029
13년 전 조회 2,705
13년 전 조회 2,043
13년 전 조회 1,686
13년 전 조회 2,410
13년 전 조회 4,698
13년 전 조회 1,423
13년 전 조회 1,506
13년 전 조회 1,656
13년 전 조회 4,760
13년 전 조회 2,123
13년 전 조회 2,334
13년 전 조회 2,344
13년 전 조회 1,624
13년 전 조회 1,503
13년 전 조회 1,655
13년 전 조회 2,477
13년 전 조회 1,799
13년 전 조회 2,123
13년 전 조회 3,297
13년 전 조회 1,796
13년 전 조회 2,097
13년 전 조회 2,189
13년 전 조회 1,583
13년 전 조회 4,290
13년 전 조회 2,076
13년 전 조회 3,622
13년 전 조회 1,936
13년 전 조회 1,630
13년 전 조회 1,684
13년 전 조회 1,533
13년 전 조회 2,051
13년 전 조회 2,209
13년 전 조회 3,546
13년 전 조회 5,118
13년 전 조회 1,560
13년 전 조회 4,095
13년 전 조회 1,493
13년 전 조회 1,983
13년 전 조회 1,583
13년 전 조회 1,912
13년 전 조회 2,678
13년 전 조회 2,035
13년 전 조회 1,469
13년 전 조회 2,136
13년 전 조회 1,754
13년 전 조회 2,153
13년 전 조회 2,608
13년 전 조회 1,965
13년 전 조회 1,574
13년 전 조회 2,771
13년 전 조회 2,055
13년 전 조회 1,624
13년 전 조회 1,536
13년 전 조회 1,957
13년 전 조회 1,440
13년 전 조회 2,593
13년 전 조회 1,872
13년 전 조회 1,860
13년 전 조회 1,504
14년 전 조회 2,181
14년 전 조회 2,976
14년 전 조회 1,473
14년 전 조회 1,354
14년 전 조회 1,572
14년 전 조회 4,154
14년 전 조회 1,624
14년 전 조회 2,173
14년 전 조회 1,974
14년 전 조회 1,575
14년 전 조회 8,623
14년 전 조회 1,963
14년 전 조회 2,625
14년 전 조회 1,616
14년 전 조회 1,977
14년 전 조회 1,809
14년 전 조회 2,796
14년 전 조회 4,218
14년 전 조회 2,439
14년 전 조회 4,138
14년 전 조회 2,316
14년 전 조회 4,751
14년 전 조회 2,296
14년 전 조회 1,837
14년 전 조회 2,773
14년 전 조회 3,570
14년 전 조회 2,455
14년 전 조회 2,288
14년 전 조회 4,060
14년 전 조회 2,072
14년 전 조회 1,623
14년 전 조회 2,510
14년 전 조회 1,731
14년 전 조회 6,060
14년 전 조회 1,715
14년 전 조회 2,090
14년 전 조회 1,686