-
Notifications
You must be signed in to change notification settings - Fork 822
/
Copy pathindex.ts
56 lines (51 loc) · 1.24 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
/**
* @license
* Copyright 2019 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
// @ts-nocheck TODO remove when fixed
// [START maps_geocoding_component_restriction]
function initMap(): void {
const geocoder = new google.maps.Geocoder();
const map = new google.maps.Map(
document.getElementById("map") as HTMLElement,
{
zoom: 8,
center: { lat: -33.865, lng: 151.209 },
}
);
(document.getElementById("submit") as HTMLElement).addEventListener(
"click",
() => {
geocodeAddress(geocoder, map);
}
);
}
function geocodeAddress(geocoder: google.maps.Geocoder, map: google.maps.Map) {
geocoder
.geocode({
address: "483 George St.",
componentRestrictions: {
country: "AU",
postalCode: "2000",
},
})
.then(({ results }) => {
map.setCenter(results[0].geometry.location);
new google.maps.Marker({
map,
position: results[0].geometry.location,
});
})
.catch((e) =>
window.alert("Geocode was not successful for the following reason: " + e)
);
}
declare global {
interface Window {
initMap: () => void;
}
}
window.initMap = initMap;
// [END maps_geocoding_component_restriction]
export {};