구글 지도 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,506
13년 전 조회 2,716
13년 전 조회 1,455
13년 전 조회 1,807
13년 전 조회 2,471
13년 전 조회 1,821
13년 전 조회 1,457
13년 전 조회 2,186
13년 전 조회 4,461
13년 전 조회 1,192
13년 전 조회 1,255
13년 전 조회 1,424
13년 전 조회 4,538
13년 전 조회 1,882
13년 전 조회 2,085
13년 전 조회 2,092
13년 전 조회 1,387
13년 전 조회 1,262
13년 전 조회 1,410
13년 전 조회 2,221
13년 전 조회 1,581
13년 전 조회 1,895
13년 전 조회 3,088
13년 전 조회 1,566
13년 전 조회 1,893
13년 전 조회 1,963
13년 전 조회 1,342
13년 전 조회 4,073
13년 전 조회 1,847
13년 전 조회 3,397
13년 전 조회 1,694
13년 전 조회 1,427
13년 전 조회 1,439
13년 전 조회 1,315
13년 전 조회 1,856
13년 전 조회 2,008
13년 전 조회 3,321
13년 전 조회 4,936
13년 전 조회 1,326
13년 전 조회 3,905
13년 전 조회 1,267
13년 전 조회 1,762
13년 전 조회 1,367
13년 전 조회 1,711
13년 전 조회 2,475
13년 전 조회 1,856
13년 전 조회 1,268
13년 전 조회 1,932
13년 전 조회 1,546
13년 전 조회 1,958
13년 전 조회 2,387
13년 전 조회 1,771
13년 전 조회 1,358
13년 전 조회 2,591
13년 전 조회 1,857
13년 전 조회 1,399
13년 전 조회 1,333
13년 전 조회 1,734
13년 전 조회 1,253
13년 전 조회 2,417
13년 전 조회 1,655
13년 전 조회 1,641
13년 전 조회 1,298
13년 전 조회 1,997
13년 전 조회 2,799
13년 전 조회 1,246
13년 전 조회 1,133
13년 전 조회 1,374
13년 전 조회 3,982
13년 전 조회 1,411
13년 전 조회 1,969
13년 전 조회 1,752
13년 전 조회 1,363
13년 전 조회 8,432
13년 전 조회 1,750
13년 전 조회 2,418
13년 전 조회 1,397
13년 전 조회 1,746
13년 전 조회 1,592
13년 전 조회 2,585
13년 전 조회 4,005
13년 전 조회 2,242
13년 전 조회 3,929
13년 전 조회 2,105
13년 전 조회 4,546
13년 전 조회 2,071
13년 전 조회 1,609
13년 전 조회 2,557
13년 전 조회 3,312
13년 전 조회 2,239
13년 전 조회 2,057
13년 전 조회 3,836
13년 전 조회 1,845
13년 전 조회 1,381
13년 전 조회 2,301
13년 전 조회 1,516
13년 전 조회 5,854
13년 전 조회 1,481
13년 전 조회 1,891
13년 전 조회 1,469