-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.ts
More file actions
78 lines (67 loc) · 2.38 KB
/
index.ts
File metadata and controls
78 lines (67 loc) · 2.38 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
/*
* @license
* Copyright 2026 Google LLC. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0
*/
// [START maps_3d_accessibility_features]
async function init(): Promise<void> {
// Import the needed libraries.
const [{ Marker3DInteractiveElement, PopoverElement }, { PinElement }] =
await Promise.all([
google.maps.importLibrary('maps3d'),
google.maps.importLibrary('marker'),
]);
const map3DElement = document.querySelector('gmp-map-3d')!;
// 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',
},
];
tourStops.forEach(({ position, title }, i) => {
const pin = new PinElement({
glyphText: String(i + 1),
scale: 1.5,
glyphColor: '#FFFFFF',
});
const popover = new PopoverElement();
const content = `${String(i + 1)}. ${title}`;
const header = document.createElement('span');
// Include the label for screen readers.
header.ariaLabel = `This is marker ${String(i + 1)}. ${title}`;
header.slot = 'header';
popover.append(header);
popover.append(content);
const interactiveMarker = new Marker3DInteractiveElement({
// Include a title, used for accessibility text for use by screen readers.
title,
position,
gmpPopoverTargetElement: popover,
});
interactiveMarker.append(pin);
map3DElement.append(interactiveMarker);
map3DElement.append(popover);
});
document.body.append(map3DElement);
}
void init();
// [END maps_3d_accessibility_features]