-
Notifications
You must be signed in to change notification settings - Fork 822
/
Copy pathindex.ts
69 lines (60 loc) · 1.79 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
60
61
62
63
64
65
66
67
68
69
/**
* @license
* Copyright 2019 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
// [START maps_directions_panel]
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: 7,
center: { lat: 41.85, lng: -87.65 },
disableDefaultUI: true,
}
);
directionsRenderer.setMap(map);
directionsRenderer.setPanel(
document.getElementById("sidebar") as HTMLElement
);
const control = document.getElementById("floating-panel") as HTMLElement;
map.controls[google.maps.ControlPosition.TOP_CENTER].push(control);
const onChangeHandler = function () {
calculateAndDisplayRoute(directionsService, directionsRenderer);
};
(document.getElementById("start") as HTMLElement).addEventListener(
"change",
onChangeHandler
);
(document.getElementById("end") as HTMLElement).addEventListener(
"change",
onChangeHandler
);
}
function calculateAndDisplayRoute(
directionsService: google.maps.DirectionsService,
directionsRenderer: google.maps.DirectionsRenderer
) {
const start = (document.getElementById("start") as HTMLInputElement).value;
const end = (document.getElementById("end") as HTMLInputElement).value;
directionsService
.route({
origin: start,
destination: end,
travelMode: google.maps.TravelMode.DRIVING,
})
.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_panel]
export {};