Skip to content

Commit 3163c17

Browse files
Update dist folder [skip ci] (#473)
Co-authored-by: William French <[email protected]>
1 parent 7c2ee49 commit 3163c17

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

dist/samples/add-map/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_add_map]
8-
// Initialize and add the map
8+
// Initialize and add the map.
99
let map;
1010
async function initMap(): Promise<void> {
1111
// [START maps_add_map_instantiate_map]
@@ -18,7 +18,7 @@ async function initMap(): Promise<void> {
1818
const {AdvancedMarkerElement} =
1919
await google.maps.importLibrary('marker') as google.maps.MarkerLibrary;
2020

21-
// The map, centered at Uluru.
21+
// The map, centered at Uluru, Australia.
2222
map = new Map(document.getElementById('map') as HTMLElement, {
2323
zoom: 4,
2424
center: position,

dist/samples/add-map/docs/index.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
// [START maps_add_map]
8-
// Initialize and add the map
8+
// Initialize and add the map.
99
let map;
1010
async function initMap() {
1111
// [START maps_add_map_instantiate_map]
@@ -14,7 +14,7 @@ async function initMap() {
1414
// Request the needed libraries.
1515
const { Map } = await google.maps.importLibrary('maps');
1616
const { AdvancedMarkerElement } = await google.maps.importLibrary('marker');
17-
// The map, centered at Uluru.
17+
// The map, centered at Uluru, Australia.
1818
map = new Map(document.getElementById('map'), {
1919
zoom: 4,
2020
center: position,

dist/samples/add-map/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_add_map]
8-
// Initialize and add the map
8+
// Initialize and add the map.
99
let map;
1010
async function initMap(): Promise<void> {
1111
// [START maps_add_map_instantiate_map]
@@ -18,7 +18,7 @@ async function initMap(): Promise<void> {
1818
const {AdvancedMarkerElement} =
1919
await google.maps.importLibrary('marker') as google.maps.MarkerLibrary;
2020

21-
// The map, centered at Uluru.
21+
// The map, centered at Uluru, Australia.
2222
map = new Map(document.getElementById('map') as HTMLElement, {
2323
zoom: 4,
2424
center: position,

dist/samples/add-map/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-
// Initialize and add the map
8+
// Initialize and add the map.
99
let map;
1010
async function initMap() {
1111

@@ -14,7 +14,7 @@ async function initMap() {
1414
// Request the needed libraries.
1515
const { Map } = await google.maps.importLibrary('maps');
1616
const { AdvancedMarkerElement } = await google.maps.importLibrary('marker');
17-
// The map, centered at Uluru.
17+
// The map, centered at Uluru, Australia.
1818
map = new Map(document.getElementById('map'), {
1919
zoom: 4,
2020
center: position,

0 commit comments

Comments
 (0)