지도 및 마커 만들기
시작하려면 새 HTML 파일을 만들고 API 키와 함께 Google Maps API 스크립트를 포함하세요. 다음으로, 지도 개체를 설정하고 필요한 매개변수를 제공합니다.
var map = new google.maps.Map(document.getElementById('map'), { zoom: 10, center: new google.maps.LatLng(-33.92, 151.25), mapTypeId: google.maps.MapTypeId.ROADMAP });
InfoWindow 만들기
위치 이름을 표시하는 InfoWindow 개체를 정의합니다. 마커 클릭:
var infowindow = new google.maps.InfoWindow();
위치 반복 데이터
다음으로 데이터 배열을 반복하고 각 위치에 대한 마커를 생성하여 지도에 추가합니다.
for (i = 0; i < locations.length; i++) { marker = new google.maps.Marker({ position: new google.maps.LatLng(locations[i][1], locations[i][2]), map: map });
InfoWindows용 클릭 이벤트 설정
마지막으로 다음과 같은 경우 InfoWindow가 열리도록 트리거하는 각 마커에 이벤트 리스너를 추가합니다. 클릭:
google.maps.event.addListener(marker, 'click', (function(marker, i) { return function() { infowindow.setContent(locations[i][0]); infowindow.open(map, marker); } })(marker, i)); }
전체 코드
전체 코드는 다음과 같습니다.
var locations = [ ['Bondi Beach', -33.890542, 151.274856, 4], ['Coogee Beach', -33.923036, 151.259052, 5], ['Cronulla Beach', -34.028249, 151.157507, 3], ['Manly Beach', -33.80010128657071, 151.28747820854187, 2], ['Maroubra Beach', -33.950198, 151.259302, 1] ]; var map = new google.maps.Map(document.getElementById('map'), { zoom: 10, center: new google.maps.LatLng(-33.92, 151.25), mapTypeId: google.maps.MapTypeId.ROADMAP }); var infowindow = new google.maps.InfoWindow(); var marker, i; for (i = 0; i < locations.length; i++) { marker = new google.maps.Marker({ position: new google.maps.LatLng(locations[i][1], locations[i][2]), map: map }); google.maps.event.addListener(marker, 'click', (function(marker, i) { return function() { infowindow.setContent(locations[i][0]); infowindow.open(map, marker); } })(marker, i)); }
위 내용은 Google Maps JS API v3을 사용하여 InfoWindows에서 여러 마커를 표시하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!