-
Notifications
You must be signed in to change notification settings - Fork 824
/
Copy pathindex.ts
63 lines (55 loc) · 1.61 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
/**
* @license
* Copyright 2019 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
// [START maps_geometry_encodings]
// 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">
function initMap(): void {
const map = new google.maps.Map(
document.getElementById("map") as HTMLElement,
{
zoom: 14,
center: { lat: 34.366, lng: -89.519 },
}
);
const poly = new google.maps.Polyline({
strokeColor: "#000000",
strokeOpacity: 1,
strokeWeight: 3,
map: map,
});
// Add a listener for the click event
google.maps.event.addListener(map, "click", (event) => {
addLatLngToPoly(event.latLng, poly);
});
}
/**
* Handles click events on a map, and adds a new point to the Polyline.
* Updates the encoding text area with the path's encoded values.
*/
function addLatLngToPoly(
latLng: google.maps.LatLng,
poly: google.maps.Polyline
) {
const path = poly.getPath();
// Because path is an MVCArray, we can simply append a new coordinate
// and it will automatically appear
path.push(latLng);
// Update the text field to display the polyline encodings
const encodeString = google.maps.geometry.encoding.encodePath(path);
if (encodeString) {
(document.getElementById("encoded-polyline") as HTMLInputElement).value =
encodeString;
}
}
declare global {
interface Window {
initMap: () => void;
}
}
window.initMap = initMap;
// [END maps_geometry_encodings]
export {};