-
Notifications
You must be signed in to change notification settings - Fork 824
/
Copy pathindex.js
50 lines (47 loc) · 1.44 KB
/
index.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
50
/**
* @license
* Copyright 2019 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
// [START maps_elevation_simple]
function initMap() {
const map = new google.maps.Map(document.getElementById("map"), {
zoom: 8,
center: { lat: 63.333, lng: -150.5 }, // Denali.
mapTypeId: "terrain",
});
const elevator = new google.maps.ElevationService();
const infowindow = new google.maps.InfoWindow({});
infowindow.open(map);
// Add a listener for the click event. Display the elevation for the LatLng of
// the click inside the infowindow.
map.addListener("click", (event) => {
displayLocationElevation(event.latLng, elevator, infowindow);
});
}
function displayLocationElevation(location, elevator, infowindow) {
// Initiate the location request
elevator
.getElevationForLocations({
locations: [location],
})
.then(({ results }) => {
infowindow.setPosition(location);
// Retrieve the first result
if (results[0]) {
// Open the infowindow indicating the elevation at the clicked position.
infowindow.setContent(
"The elevation at this point <br>is " +
results[0].elevation +
" meters.",
);
} else {
infowindow.setContent("No results found");
}
})
.catch((e) =>
infowindow.setContent("Elevation service failed due to: " + e),
);
}
window.initMap = initMap;
// [END maps_elevation_simple]