-
Notifications
You must be signed in to change notification settings - Fork 823
/
index.ts
59 lines (53 loc) · 1.63 KB
/
index.ts
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
51
52
53
54
55
56
57
58
59
/**
* @license
* Copyright 2019 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
// [START maps_directions_travel_modes]
function initMap(): void {
const directionsRenderer = new google.maps.DirectionsRenderer();
const directionsService = new google.maps.DirectionsService();
const map = new google.maps.Map(
document.getElementById("map") as HTMLElement,
{
zoom: 14,
center: { lat: 37.77, lng: -122.447 },
}
);
directionsRenderer.setMap(map);
calculateAndDisplayRoute(directionsService, directionsRenderer);
(document.getElementById("mode") as HTMLInputElement).addEventListener(
"change",
() => {
calculateAndDisplayRoute(directionsService, directionsRenderer);
}
);
}
function calculateAndDisplayRoute(
directionsService: google.maps.DirectionsService,
directionsRenderer: google.maps.DirectionsRenderer
) {
const selectedMode = (document.getElementById("mode") as HTMLInputElement)
.value;
directionsService
.route({
origin: { lat: 37.77, lng: -122.447 }, // Haight.
destination: { lat: 37.768, lng: -122.511 }, // Ocean Beach.
// Note that Javascript allows us to access the constant
// using square brackets and a string value as its
// "property."
travelMode: google.maps.TravelMode[selectedMode],
})
.then((response) => {
directionsRenderer.setDirections(response);
})
.catch((e) => window.alert("Directions request failed due to " + status));
}
declare global {
interface Window {
initMap: () => void;
}
}
window.initMap = initMap;
// [END maps_directions_travel_modes]
export {};