Skip to content

Commit ccc820c

Browse files
Update dist folder [skip ci] (#975)
1 parent 7239806 commit ccc820c

File tree

7 files changed

+6
-8
lines changed

7 files changed

+6
-8
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ async function init() {
3434
map.append(beachFlagMarker);
3535

3636
// A marker with a custom SVG glyph and white background.
37-
const glyphImgUrl =
38-
'https://www.gstatic.com/images/branding/productlogos/maps/v7/192px.svg';
37+
const glyphImgUrl = new URL('images/192px.svg', import.meta.url);
3938
const glyphSvgPinElement = new PinElement({
4039
background: 'white',
4140
glyphSrc: new URL(glyphImgUrl),

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

Lines changed: 0 additions & 1 deletion
This file was deleted.

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

Lines changed: 1 addition & 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/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-BFMkGjFd.js"></script>
12+
<script type="module" crossorigin src="./assets/index-DzJmhcPL.js"></script>
1313
<link rel="stylesheet" crossorigin href="./assets/index-BVXE32j3.css">
1414
</head>
1515
<body>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ async function init() {
2727
beachFlagMarker.append(templateForImg);
2828
map.append(beachFlagMarker);
2929
// A marker with a custom SVG glyph and white background.
30-
const glyphImgUrl = 'https://www.gstatic.com/images/branding/productlogos/maps/v7/192px.svg';
30+
const glyphImgUrl = new URL('images/192px.svg', import.meta.url);
3131
const glyphSvgPinElement = new PinElement({
3232
background: 'white',
3333
glyphSrc: new URL(glyphImgUrl),

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ async function init() {
3434
map.append(beachFlagMarker);
3535

3636
// A marker with a custom SVG glyph and white background.
37-
const glyphImgUrl =
38-
'https://www.gstatic.com/images/branding/productlogos/maps/v7/192px.svg';
37+
const glyphImgUrl = new URL('images/192px.svg', import.meta.url);
3938
const glyphSvgPinElement = new PinElement({
4039
background: 'white',
4140
glyphSrc: new URL(glyphImgUrl),

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ async function init() {
2727
beachFlagMarker.append(templateForImg);
2828
map.append(beachFlagMarker);
2929
// A marker with a custom SVG glyph and white background.
30-
const glyphImgUrl = 'https://www.gstatic.com/images/branding/productlogos/maps/v7/192px.svg';
30+
const glyphImgUrl = new URL('images/192px.svg', import.meta.url);
3131
const glyphSvgPinElement = new PinElement({
3232
background: 'white',
3333
glyphSrc: new URL(glyphImgUrl),

0 commit comments

Comments
 (0)