Skip to content

Commit 7c63f99

Browse files
authored
Merge branch 'main' into migrate-elevation-simple
2 parents 99970e1 + 69034ea commit 7c63f99

568 files changed

Lines changed: 1680 additions & 1530 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

dist/samples/3d-accessibility-features/app/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
// [START maps_3d_accessibility_features]
8-
async function initMap() {
8+
async function init() {
99
const [
1010
{ Map3DElement, Marker3DInteractiveElement, PopoverElement },
1111
{ PinElement },
@@ -82,5 +82,5 @@ async function initMap() {
8282
document.body.append(map);
8383
}
8484

85-
void initMap();
85+
void init();
8686
// [END maps_3d_accessibility_features]

dist/samples/3d-accessibility-features/docs/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77

88
// [START maps_3d_accessibility_features]
9-
async function initMap() {
9+
async function init() {
1010
const [
1111
{ Map3DElement, Marker3DInteractiveElement, PopoverElement },
1212
{ PinElement },
@@ -83,5 +83,5 @@ async function initMap() {
8383
document.body.append(map);
8484
}
8585

86-
void initMap();
86+
void init();
8787
// [END maps_3d_accessibility_features]

dist/samples/3d-accessibility-features/docs/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
// [START maps_3d_accessibility_features]
8-
async function initMap() {
8+
async function init() {
99
const [
1010
{ Map3DElement, Marker3DInteractiveElement, PopoverElement },
1111
{ PinElement },
@@ -82,5 +82,5 @@ async function initMap() {
8282
document.body.append(map);
8383
}
8484

85-
void initMap();
85+
void init();
8686
// [END maps_3d_accessibility_features]

dist/samples/3d-accessibility-features/jsfiddle/demo.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* SPDX-License-Identifier: Apache-2.0
66
*/
77

8-
async function initMap() {
8+
async function init() {
99
const [
1010
{ Map3DElement, Marker3DInteractiveElement, PopoverElement },
1111
{ PinElement },
@@ -82,4 +82,4 @@ async function initMap() {
8282
document.body.append(map);
8383
}
8484

85-
void initMap();
85+
void init();

dist/samples/3d-camera-boundary/app/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
// [START maps_3d_camera_boundary]
8-
async function initMap() {
8+
async function init() {
99
const { Map3DElement } = await google.maps.importLibrary('maps3d');
1010

1111
const map = new Map3DElement({
@@ -19,5 +19,5 @@ async function initMap() {
1919
document.body.append(map);
2020
}
2121

22-
void initMap();
22+
void init();
2323
// [END maps_3d_camera_boundary]

dist/samples/3d-camera-boundary/docs/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77

88
// [START maps_3d_camera_boundary]
9-
async function initMap() {
9+
async function init() {
1010
const { Map3DElement } = await google.maps.importLibrary('maps3d');
1111

1212
const map = new Map3DElement({
@@ -20,5 +20,5 @@ async function initMap() {
2020
document.body.append(map);
2121
}
2222

23-
void initMap();
23+
void init();
2424
// [END maps_3d_camera_boundary]

dist/samples/3d-camera-boundary/docs/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
// [START maps_3d_camera_boundary]
8-
async function initMap() {
8+
async function init() {
99
const { Map3DElement } = await google.maps.importLibrary('maps3d');
1010

1111
const map = new Map3DElement({
@@ -19,5 +19,5 @@ async function initMap() {
1919
document.body.append(map);
2020
}
2121

22-
void initMap();
22+
void init();
2323
// [END maps_3d_camera_boundary]

dist/samples/3d-camera-boundary/jsfiddle/demo.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* SPDX-License-Identifier: Apache-2.0
66
*/
77

8-
async function initMap() {
8+
async function init() {
99
const { Map3DElement } = await google.maps.importLibrary('maps3d');
1010

1111
const map = new Map3DElement({
@@ -19,4 +19,4 @@ async function initMap() {
1919
document.body.append(map);
2020
}
2121

22-
void initMap();
22+
void init();

dist/samples/3d-camera-center/app/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
// [START maps_3d_camera_center]
8-
async function initMap(): Promise<void> {
8+
async function init(): Promise<void> {
99
// Import the needed libraries.
1010
await google.maps.importLibrary('maps3d');
1111

@@ -36,5 +36,5 @@ async function initMap(): Promise<void> {
3636
});
3737
}
3838

39-
void initMap();
39+
void init();
4040
// [END maps_3d_camera_center]

dist/samples/3d-camera-center/docs/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*/
77

88
// [START maps_3d_camera_center]
9-
async function initMap() {
9+
async function init() {
1010
// Import the needed libraries.
1111
await google.maps.importLibrary('maps3d');
1212

@@ -37,5 +37,5 @@ async function initMap() {
3737
});
3838
}
3939

40-
void initMap();
40+
void init();
4141
// [END maps_3d_camera_center]

0 commit comments

Comments
 (0)