-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.ts
More file actions
98 lines (83 loc) · 2.83 KB
/
index.ts
File metadata and controls
98 lines (83 loc) · 2.83 KB
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
/**
* @license
* Copyright 2026 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
// [START maps_geocoding_reverse]
let marker;
async function initMap() {
// Request the needed libraries.
const [{ Map, InfoWindow }, { Geocoder }, { AdvancedMarkerElement }] =
await Promise.all([
google.maps.importLibrary(
'maps'
) as Promise<google.maps.MapsLibrary>,
google.maps.importLibrary(
'geocoding'
) as Promise<google.maps.GeocodingLibrary>,
google.maps.importLibrary(
'marker'
) as Promise<google.maps.MarkerLibrary>,
]);
// Get the gmp-map element.
const mapElement = document.querySelector(
'gmp-map'
) as google.maps.MapElement;
// Get the inner map.
const innerMap = mapElement.innerMap;
// Get the latlng input box.
const latLngQuery = document.getElementById('latlng') as HTMLInputElement;
// Get the submit button.
const submitButton = document.getElementById('submit') as HTMLElement;
// Set the cursor to crosshair.
innerMap.setOptions({
draggableCursor: 'crosshair',
zoom: 13,
mapTypeControl: false,
});
// Create a marker for re-use.
marker = new AdvancedMarkerElement({
map: innerMap,
});
marker.anchorTop = "40px";
const geocoder = new Geocoder();
const infowindow = new InfoWindow();
// Add a click event listener to the submit button.
submitButton.addEventListener('click', () => {
geocodeLatLng(geocoder, innerMap, infowindow);
});
// Add a click event listener to the map.
innerMap.addListener('click', (event) => {
latLngQuery.value = `${event.latLng.lat()}, ${event.latLng.lng()}`;
geocodeLatLng(geocoder, innerMap, infowindow);
});
// Make an initial request upon loading.
geocodeLatLng(geocoder, innerMap, infowindow);
}
async function geocodeLatLng(
geocoder: google.maps.Geocoder,
map: google.maps.Map,
infowindow: google.maps.InfoWindow
) {
const input = (document.getElementById('latlng') as HTMLInputElement).value;
const latlngStr = input.split(',', 2);
const latlng = {
lat: parseFloat(latlngStr[0]),
lng: parseFloat(latlngStr[1]),
};
geocoder
.geocode({ location: latlng })
.then((response) => {
if (response.results[0]) {
marker.position = latlng;
map.setCenter(latlng);
infowindow.setContent(response.results[0].formatted_address);
infowindow.open(map, marker);
} else {
window.alert('No results found');
}
})
.catch((e) => window.alert('Geocoder failed due to: ' + e));
}
initMap();
// [END maps_geocoding_reverse]