-
Notifications
You must be signed in to change notification settings - Fork 824
/
Copy pathindex.js
38 lines (34 loc) · 927 Bytes
/
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
/**
* @license
* Copyright 2019 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
// [START maps_maxzoom_simple]
let map;
let maxZoomService;
let infoWindow;
function initMap() {
map = new google.maps.Map(document.getElementById("map"), {
zoom: 11,
center: { lat: 35.6894, lng: 139.692 },
mapTypeId: "hybrid",
});
infoWindow = new google.maps.InfoWindow();
maxZoomService = new google.maps.MaxZoomService();
map.addListener("click", showMaxZoom);
}
function showMaxZoom(e) {
maxZoomService.getMaxZoomAtLatLng(e.latLng, (result) => {
if (result.status !== "OK") {
infoWindow.setContent("Error in MaxZoomService");
} else {
infoWindow.setContent(
"The maximum zoom at this location is: " + result.zoom,
);
}
infoWindow.setPosition(e.latLng);
infoWindow.open(map);
});
}
window.initMap = initMap;
// [END maps_maxzoom_simple]