-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.js
More file actions
68 lines (68 loc) · 2.44 KB
/
index.js
File metadata and controls
68 lines (68 loc) · 2.44 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
"use strict";
/**
* @license
* Copyright 2019 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
// [START maps_advanced_markers_accessibility]
const mapElement = document.querySelector('gmp-map');
async function initMap() {
// Request needed libraries.
const { Map, InfoWindow } = (await google.maps.importLibrary('maps'));
const { AdvancedMarkerElement, PinElement } = (await google.maps.importLibrary('marker'));
// Set LatLng and title text for the markers. The first marker (Boynton Pass)
// receives the initial focus when tab is pressed. Use arrow keys to move
// between markers; press tab again to cycle through the map controls.
const tourStops = [
{
position: { lat: 34.8791806, lng: -111.8265049 },
title: 'Boynton Pass',
},
{
position: { lat: 34.8559195, lng: -111.7988186 },
title: 'Airport Mesa',
},
{
position: { lat: 34.832149, lng: -111.7695277 },
title: 'Chapel of the Holy Cross',
},
{
position: { lat: 34.823736, lng: -111.8001857 },
title: 'Red Rock Crossing',
},
{
position: { lat: 34.800326, lng: -111.7665047 },
title: 'Bell Rock',
},
];
// Create an info window to share between markers.
const infoWindow = new InfoWindow();
// Create the markers.
tourStops.forEach(({ position, title }, i) => {
// [START maps_advanced_markers_accessibility_marker]
const pin = new PinElement({
//@ts-ignore
glyphText: `${i + 1}`,
scale: 1.5,
});
const marker = new AdvancedMarkerElement({
position,
title: `${i + 1}. ${title}`,
gmpClickable: true,
});
marker.append(pin);
mapElement.append(marker);
// [END maps_advanced_markers_accessibility_marker]
// [START maps_advanced_markers_accessibility_event_listener]
// Add a click listener for each marker, and set up the info window.
marker.addEventListener('gmp-click', (domEvent) => {
const { target } = domEvent;
infoWindow.close();
infoWindow.setContent(marker.title);
infoWindow.open(marker.map, marker);
});
// [END maps_advanced_markers_accessibility_event_listener]
});
}
initMap();
// [END maps_advanced_markers_accessibility]