Skip to content

Commit b4af120

Browse files
Update dist folder [skip ci] (#867)
1 parent 0957d7c commit b4af120

File tree

38 files changed

+76
-64
lines changed

38 files changed

+76
-64
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async function initMap() {
4444

4545
tourStops.forEach(({ position, title }, i) => {
4646
const pin = new PinElement({
47-
glyph: `${i + 1}`,
47+
glyphText: `${i + 1}`,
4848
scale: 1.5,
4949
glyphColor: "#FFFFFF"
5050
});

dist/samples/3d-accessibility-features/dist/assets/index-CA3UWuRQ.js renamed to dist/samples/3d-accessibility-features/dist/assets/index-CoX0ZzLD.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/samples/3d-accessibility-features/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-CA3UWuRQ.js"></script>
12+
<script type="module" crossorigin src="./assets/index-CoX0ZzLD.js"></script>
1313
<link rel="stylesheet" crossorigin href="./assets/index-DDwKyjRS.css">
1414
</head>
1515
<body>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ async function initMap() {
4141
];
4242
tourStops.forEach(({ position, title }, i) => {
4343
const pin = new PinElement({
44-
glyph: `${i + 1}`,
44+
glyphText: `${i + 1}`,
4545
scale: 1.5,
4646
glyphColor: "#FFFFFF"
4747
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ async function initMap() {
4444

4545
tourStops.forEach(({ position, title }, i) => {
4646
const pin = new PinElement({
47-
glyph: `${i + 1}`,
47+
glyphText: `${i + 1}`,
4848
scale: 1.5,
4949
glyphColor: "#FFFFFF"
5050
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ async function initMap() {
4141
];
4242
tourStops.forEach(({ position, title }, i) => {
4343
const pin = new PinElement({
44-
glyph: `${i + 1}`,
44+
glyphText: `${i + 1}`,
4545
scale: 1.5,
4646
glyphColor: "#FFFFFF"
4747
});

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ async function init() {
5656
// Change many elements together and extrude marker.
5757
const pinTextGlyph = new PinElement({
5858
background: '#F0F6FC',
59-
glyph: 'E',
59+
glyphText: 'E',
6060
glyphColor: 'red',
6161
borderColor: '#0000FF',
6262
});
@@ -69,7 +69,7 @@ async function init() {
6969

7070
// Hide the glyph.
7171
const pinNoGlyph = new PinElement({
72-
glyph: '',
72+
glyphText: '',
7373
});
7474
const markerWithNoGlyph = new Marker3DElement({
7575
position: { lat: 37.415, lng: -122.005 },

dist/samples/3d-marker-customization/dist/assets/index-C_TDKwhO.js renamed to dist/samples/3d-marker-customization/dist/assets/index-BmFBEzte.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/samples/3d-marker-customization/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-C_TDKwhO.js"></script>
12+
<script type="module" crossorigin src="./assets/index-BmFBEzte.js"></script>
1313
<link rel="stylesheet" crossorigin href="./assets/index-DDwKyjRS.css">
1414
</head>
1515
<body>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ async function init() {
4949
// Change many elements together and extrude marker.
5050
const pinTextGlyph = new PinElement({
5151
background: '#F0F6FC',
52-
glyph: 'E',
52+
glyphText: 'E',
5353
glyphColor: 'red',
5454
borderColor: '#0000FF',
5555
});
@@ -61,7 +61,7 @@ async function init() {
6161
markerWithGlyphText.append(pinTextGlyph);
6262
// Hide the glyph.
6363
const pinNoGlyph = new PinElement({
64-
glyph: '',
64+
glyphText: '',
6565
});
6666
const markerWithNoGlyph = new Marker3DElement({
6767
position: { lat: 37.415, lng: -122.005 },

0 commit comments

Comments
 (0)