구글 지도 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:"따이뜰!"
});
댓글을 작성하시려면 로그인이 필요합니다.

프로그램

태그 필터 (최대 3개) 전체 개발자 소스 기타 mysql 팁자료실 javascript php linux flash 정규표현식 jquery node.js mobile 웹서버 os 프로그램 강좌 썸네일 이미지관련 도로명주소 그누보드5 기획자 견적서 계약서 기획서 마케팅 제안서 seo 통계 서식 통계자료 퍼블리셔 html css 반응형 웹접근성 퍼블리싱 표준화 반응형웹 홈페이지기초 부트스트랩 angularjs 포럼 스크린리더 센스리더 개발자톡 개발자팁 퍼블리셔톡 퍼블리셔팁 기획자톡 기획자팁 프로그램강좌 퍼블리싱강좌
+
제목 글쓴이 날짜 조회
13년 전 조회 1,400
13년 전 조회 2,618
13년 전 조회 1,350
13년 전 조회 1,696
13년 전 조회 2,384
13년 전 조회 1,718
13년 전 조회 1,363
13년 전 조회 2,096
13년 전 조회 4,372
13년 전 조회 1,096
13년 전 조회 1,168
13년 전 조회 1,341
13년 전 조회 4,448
13년 전 조회 1,795
13년 전 조회 1,999
13년 전 조회 2,010
13년 전 조회 1,301
13년 전 조회 1,166
13년 전 조회 1,327
13년 전 조회 2,131
13년 전 조회 1,493
13년 전 조회 1,807
13년 전 조회 3,006
13년 전 조회 1,485
13년 전 조회 1,807
13년 전 조회 1,887
13년 전 조회 1,255
13년 전 조회 3,993
13년 전 조회 1,772
13년 전 조회 3,309
13년 전 조회 1,623
13년 전 조회 1,336
13년 전 조회 1,357
13년 전 조회 1,237
13년 전 조회 1,779
13년 전 조회 1,919
13년 전 조회 3,237
13년 전 조회 4,874
13년 전 조회 1,253
13년 전 조회 3,825
13년 전 조회 1,192
13년 전 조회 1,668
13년 전 조회 1,278
13년 전 조회 1,621
13년 전 조회 2,392
13년 전 조회 1,790
13년 전 조회 1,182
13년 전 조회 1,844
13년 전 조회 1,461
13년 전 조회 1,860
13년 전 조회 2,310
13년 전 조회 1,681
13년 전 조회 1,272
13년 전 조회 2,531
13년 전 조회 1,773
13년 전 조회 1,314
13년 전 조회 1,251
13년 전 조회 1,641
13년 전 조회 1,171
13년 전 조회 2,355
13년 전 조회 1,578
13년 전 조회 1,555
13년 전 조회 1,218
13년 전 조회 1,933
13년 전 조회 2,746
13년 전 조회 1,158
13년 전 조회 1,053
13년 전 조회 1,285
13년 전 조회 3,924
13년 전 조회 1,324
13년 전 조회 1,893
13년 전 조회 1,673
13년 전 조회 1,274
13년 전 조회 8,371
13년 전 조회 1,665
13년 전 조회 2,329
13년 전 조회 1,307
13년 전 조회 1,666
13년 전 조회 1,500
13년 전 조회 2,491
13년 전 조회 3,915
13년 전 조회 2,150
13년 전 조회 3,844
13년 전 조회 2,013
13년 전 조회 4,457
13년 전 조회 1,969
13년 전 조회 1,504
13년 전 조회 2,460
13년 전 조회 3,225
13년 전 조회 2,146
13년 전 조회 1,957
13년 전 조회 3,744
13년 전 조회 1,746
13년 전 조회 1,289
13년 전 조회 2,219
13년 전 조회 1,413
13년 전 조회 5,763
13년 전 조회 1,402
13년 전 조회 1,803
13년 전 조회 1,367