Я получаю еще одну ошибку JavaScript: Uncaught ReferenceError: google is not defined
.
Строка, которая генерирует сообщения Cannot read property 'open' of undefined
, в этом коде infowindow.open(map, markers[i]);
;
function SetInfoWindows() {
for (var i=0;i < markers.length;i++){
markers[i].addListener('click', function () {
infowindow.open(map, markers[i]);
});
}
}
Две проблемы с этим кодом:
infowindow
не инициализирован
markers[i]
- это проблема, i
указывает на markers.length
(что недопустимо)
Для решения этих проблем:
- инициализировать
infowindow
внутри функции initMap
.
- используйте
this
для второго аргумента infowindow.open
(это ссылка на нажатый маркер внутри функции прослушивателя щелчков).
фиксированная SetInfoWindows
функция:
function SetInfoWindows() {
for (var i=0;i < markers.length;i++){
markers[i].addListener('click', function () {
infowindow.open(map, this);
});
}
}
обновленный фрагмент кода:
#map {
height: 100%;
}
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
#floating-panel {
position: absolute;
top: 10px;
left: 25%;
z-index: 5;
background-color: #fff;
padding: 5px;
border: 1px solid #999;
text-align: center;
font-family: 'Roboto', 'sans-serif';
line-height: 30px;
padding-left: 10px;
}
#floating-panel {
margin-left: -52px;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Marker animations with <code>setTimeout()</code></title>
</head>
<body>
<div id="floating-panel">
<button id="drop" onclick="drop()">Drop Markers</button>
</div>
<div id="map"></div>
<script>
var neighborhoods = [
{lat: 52.511,lng: 13.447},
{lat: 52.549,lng: 13.422},
{lat: 52.497,lng: 13.396},
{lat: 52.517,lng: 13.394}
];
var markers = [];
var map;
var contentString = '<div id="content">' +
'<div id="siteNotice">' +
'</div>' +
'<h1 id="firstHeading" class="firstHeading">Uluru</h1>' +
'<div id="bodyContent">' +
'<p><b>Uluru</b>, also referred to as <b>Ayers Rock</b>, is a large ' +
'sandstone rock formation in the southern part of the ' +
'Northern Territory, central Australia. It lies 335 km (208 mi) ' +
'south west of the nearest large town, Alice Springs; 450 km ' +
'(280 mi) by road. Kata Tjuta and Uluru are the two major ' +
'features of the Uluru - Kata Tjuta National Park. Uluru is ' +
'sacred to the Pitjantjatjara and Yankunytjatjara, the ' +
'Aboriginal people of the area. It has many springs, waterholes, ' +
'rock caves and ancient paintings. Uluru is listed as a World ' +
'Heritage Site.</p>' +
'<p>Attribution: Uluru, <a href="https://en.wikipedia.org/w/index.php?title=Uluru&oldid=297882194">' +
'https://en.wikipedia.org/w/index.php?title=Uluru</a> ' +
'(last visited June 22, 2009).</p>' +
'</div>' +
'</div>';
var infowindow;
function initMap() {
// initialize the infowindow variable once the API has loaded
infowindow = new google.maps.InfoWindow({
content: contentString
});
map = new google.maps.Map(document.getElementById('map'), {
zoom: 12,
center: {
lat: 52.520,
lng: 13.410
}
});
}
function drop() {
clearMarkers();
for (var i = 0; i < neighborhoods.length; i++) {
addMarkerWithTimeout(neighborhoods[i], i * 200);
}
window.setTimeout(SetInfoWindows, 2000);
}
function SetInfoWindows() {
for (var i = 0; i < markers.length; i++) {
markers[i].addListener('click', function() {
infowindow.open(map, this);
});
}
}
function addMarkerWithTimeout(position, timeout) {
window.setTimeout(function() {
var marker = new google.maps.Marker({
position: position,
map: map,
animation: google.maps.Animation.DROP,
title: 'Uluru (Ayers Rock)'
});
markers.push(marker);
}, timeout);
}
function clearMarkers() {
for (var i = 0; i < markers.length; i++) {
markers[i].setMap(null);
}
markers = [];
}
</script>
<script async defer src="https://maps.googleapis.com/maps/api/js?callback=initMap">
</script>
</body>
</html>