-
Notifications
You must be signed in to change notification settings - Fork 0
/
tryMap.js
49 lines (42 loc) · 1.21 KB
/
tryMap.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// If you're adding a number of markers, you may want to drop them on the map
// consecutively rather than all at once. This example shows how to use
// window.setTimeout() to space your markers' animation.
const 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 },
];
let markers = [];
let map;
function initMap() {
map = new google.maps.Map(document.getElementById("map"), {
zoom: 12,
center: { lat: 52.52, lng: 13.41 },
});
document.getElementById("drop").addEventListener("click", drop);
}
function drop() {
clearMarkers();
for (let i = 0; i < neighborhoods.length; i++) {
addMarkerWithTimeout(neighborhoods[i], i * 200);
}
}
function addMarkerWithTimeout(position, timeout) {
window.setTimeout(() => {
markers.push(
new google.maps.Marker({
position: position,
map,
animation: google.maps.Animation.DROP,
}),
);
}, timeout);
}
function clearMarkers() {
for (let i = 0; i < markers.length; i++) {
markers[i].setMap(null);
}
markers = [];
}
window.initMap = initMap;