Skip to content

Commit a070e77

Browse files
Update dist folder [skip ci] (#563)
1 parent 8e1bc21 commit a070e77

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

dist/assets/windmill.glb

76.7 KB
Binary file not shown.

dist/samples/3d-marker-graphics/app/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ async function init() {
2020

2121
// A marker with a with a URL pointing to a PNG.
2222
const beachFlagImg = document.createElement('img');
23-
beachFlagImg.src = 'https://maps-docs-team.web.app/assets/beachflag.png';
23+
beachFlagImg.src = new URL('images/beachflag.png', import.meta.url);
2424

2525
const beachFlagMarker = new Marker3DElement({
2626
position: { lat: 37.434, lng: -122.082 },

dist/samples/3d-marker-graphics/dist/assets/index-2oh7tHSc.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/samples/3d-marker-graphics/dist/assets/index-Dgt8SIfA.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

dist/samples/3d-marker-graphics/dist/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<head>
1010
<title>Map</title>
1111

12-
<script type="module" crossorigin src="./assets/index-Dgt8SIfA.js"></script>
12+
<script type="module" crossorigin src="./assets/index-2oh7tHSc.js"></script>
1313
<link rel="stylesheet" crossorigin href="./assets/index-DDwKyjRS.css">
1414
</head>
1515
<body>

dist/samples/3d-marker-graphics/docs/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
"use strict";
21
/*
32
* @license
43
* Copyright 2025 Google LLC. All Rights Reserved.
@@ -18,7 +17,7 @@ async function init() {
1817
});
1918
// A marker with a with a URL pointing to a PNG.
2019
const beachFlagImg = document.createElement('img');
21-
beachFlagImg.src = 'https://maps-docs-team.web.app/assets/beachflag.png';
20+
beachFlagImg.src = new URL('images/beachflag.png', import.meta.url);
2221
const beachFlagMarker = new Marker3DElement({
2322
position: { lat: 37.434, lng: -122.082 },
2423
});
@@ -75,4 +74,5 @@ async function init() {
7574
document.body.append(map);
7675
}
7776
init();
77+
export {};
7878
// [END maps_3d_marker_graphics]

dist/samples/3d-marker-graphics/docs/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ async function init() {
2020

2121
// A marker with a with a URL pointing to a PNG.
2222
const beachFlagImg = document.createElement('img');
23-
beachFlagImg.src = 'https://maps-docs-team.web.app/assets/beachflag.png';
23+
beachFlagImg.src = new URL('images/beachflag.png', import.meta.url);
2424

2525
const beachFlagMarker = new Marker3DElement({
2626
position: { lat: 37.434, lng: -122.082 },

dist/samples/3d-marker-graphics/jsfiddle/demo.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
"use strict";
21
/*
32
* @license
43
* Copyright 2025 Google LLC. All Rights Reserved.
@@ -18,7 +17,7 @@ async function init() {
1817
});
1918
// A marker with a with a URL pointing to a PNG.
2019
const beachFlagImg = document.createElement('img');
21-
beachFlagImg.src = 'https://maps-docs-team.web.app/assets/beachflag.png';
20+
beachFlagImg.src = new URL('images/beachflag.png', import.meta.url);
2221
const beachFlagMarker = new Marker3DElement({
2322
position: { lat: 37.434, lng: -122.082 },
2423
});
@@ -75,4 +74,5 @@ async function init() {
7574
document.body.append(map);
7675
}
7776
init();
77+
export {};
7878

0 commit comments

Comments
 (0)