-
Notifications
You must be signed in to change notification settings - Fork 823
/
index.ts
99 lines (82 loc) · 2.32 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/**
* @license
* Copyright 2019 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
// [START maps_geometry_headings]
// This example requires the Geometry library. Include the libraries=geometry
// parameter when you first load the API. For example:
// <script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&libraries=geometry">
let marker1: google.maps.Marker, marker2: google.maps.Marker;
let poly: google.maps.Polyline, geodesicPoly: google.maps.Polyline;
function initMap(): void {
const map = new google.maps.Map(
document.getElementById("map") as HTMLElement,
{
zoom: 4,
center: { lat: 34, lng: -40.605 },
}
);
map.controls[google.maps.ControlPosition.TOP_CENTER].push(
document.getElementById("info") as HTMLElement
);
marker1 = new google.maps.Marker({
map,
draggable: true,
position: { lat: 40.714, lng: -74.006 },
});
marker2 = new google.maps.Marker({
map,
draggable: true,
position: { lat: 48.857, lng: 2.352 },
});
const bounds = new google.maps.LatLngBounds(
marker1.getPosition() as google.maps.LatLng,
marker2.getPosition() as google.maps.LatLng
);
map.fitBounds(bounds);
google.maps.event.addListener(marker1, "position_changed", update);
google.maps.event.addListener(marker2, "position_changed", update);
poly = new google.maps.Polyline({
strokeColor: "#FF0000",
strokeOpacity: 1.0,
strokeWeight: 3,
map: map,
});
geodesicPoly = new google.maps.Polyline({
strokeColor: "#CC0099",
strokeOpacity: 1.0,
strokeWeight: 3,
geodesic: true,
map: map,
});
update();
}
function update() {
const path = [
marker1.getPosition() as google.maps.LatLng,
marker2.getPosition() as google.maps.LatLng,
];
poly.setPath(path);
geodesicPoly.setPath(path);
const heading = google.maps.geometry.spherical.computeHeading(
path[0],
path[1]
);
(document.getElementById("heading") as HTMLInputElement).value =
String(heading);
(document.getElementById("origin") as HTMLInputElement).value = String(
path[0]
);
(document.getElementById("destination") as HTMLInputElement).value = String(
path[1]
);
}
declare global {
interface Window {
initMap: () => void;
}
}
window.initMap = initMap;
// [END maps_geometry_headings]
export {};