Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dist/samples/3d-accessibility-features/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async function initMap() {

tourStops.forEach(({ position, title }, i) => {
const pin = new PinElement({
glyph: `${i + 1}`,
glyphText: `${i + 1}`,
scale: 1.5,
glyphColor: "#FFFFFF"
});
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/samples/3d-accessibility-features/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<head>
<title>Map</title>

<script type="module" crossorigin src="./assets/index-CA3UWuRQ.js"></script>
<script type="module" crossorigin src="./assets/index-CoX0ZzLD.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-DDwKyjRS.css">
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-accessibility-features/docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async function initMap() {
];
tourStops.forEach(({ position, title }, i) => {
const pin = new PinElement({
glyph: `${i + 1}`,
glyphText: `${i + 1}`,
scale: 1.5,
glyphColor: "#FFFFFF"
});
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-accessibility-features/docs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async function initMap() {

tourStops.forEach(({ position, title }, i) => {
const pin = new PinElement({
glyph: `${i + 1}`,
glyphText: `${i + 1}`,
scale: 1.5,
glyphColor: "#FFFFFF"
});
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-accessibility-features/jsfiddle/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async function initMap() {
];
tourStops.forEach(({ position, title }, i) => {
const pin = new PinElement({
glyph: `${i + 1}`,
glyphText: `${i + 1}`,
scale: 1.5,
glyphColor: "#FFFFFF"
});
Expand Down
4 changes: 2 additions & 2 deletions dist/samples/3d-marker-customization/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async function init() {
// Change many elements together and extrude marker.
const pinTextGlyph = new PinElement({
background: '#F0F6FC',
glyph: 'E',
glyphText: 'E',
glyphColor: 'red',
borderColor: '#0000FF',
});
Expand All @@ -69,7 +69,7 @@ async function init() {

// Hide the glyph.
const pinNoGlyph = new PinElement({
glyph: '',
glyphText: '',
});
const markerWithNoGlyph = new Marker3DElement({
position: { lat: 37.415, lng: -122.005 },
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/samples/3d-marker-customization/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<head>
<title>Map</title>

<script type="module" crossorigin src="./assets/index-C_TDKwhO.js"></script>
<script type="module" crossorigin src="./assets/index-BmFBEzte.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-DDwKyjRS.css">
</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions dist/samples/3d-marker-customization/docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async function init() {
// Change many elements together and extrude marker.
const pinTextGlyph = new PinElement({
background: '#F0F6FC',
glyph: 'E',
glyphText: 'E',
glyphColor: 'red',
borderColor: '#0000FF',
});
Expand All @@ -61,7 +61,7 @@ async function init() {
markerWithGlyphText.append(pinTextGlyph);
// Hide the glyph.
const pinNoGlyph = new PinElement({
glyph: '',
glyphText: '',
});
const markerWithNoGlyph = new Marker3DElement({
position: { lat: 37.415, lng: -122.005 },
Expand Down
4 changes: 2 additions & 2 deletions dist/samples/3d-marker-customization/docs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async function init() {
// Change many elements together and extrude marker.
const pinTextGlyph = new PinElement({
background: '#F0F6FC',
glyph: 'E',
glyphText: 'E',
glyphColor: 'red',
borderColor: '#0000FF',
});
Expand All @@ -69,7 +69,7 @@ async function init() {

// Hide the glyph.
const pinNoGlyph = new PinElement({
glyph: '',
glyphText: '',
});
const markerWithNoGlyph = new Marker3DElement({
position: { lat: 37.415, lng: -122.005 },
Expand Down
4 changes: 2 additions & 2 deletions dist/samples/3d-marker-customization/jsfiddle/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async function init() {
// Change many elements together and extrude marker.
const pinTextGlyph = new PinElement({
background: '#F0F6FC',
glyph: 'E',
glyphText: 'E',
glyphColor: 'red',
borderColor: '#0000FF',
});
Expand All @@ -61,7 +61,7 @@ async function init() {
markerWithGlyphText.append(pinTextGlyph);
// Hide the glyph.
const pinNoGlyph = new PinElement({
glyph: '',
glyphText: '',
});
const markerWithNoGlyph = new Marker3DElement({
position: { lat: 37.415, lng: -122.005 },
Expand Down
4 changes: 2 additions & 2 deletions dist/samples/3d-marker-graphics/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ async function init() {
const glyphImgUrl = 'https://www.gstatic.com/images/branding/productlogos/maps/v7/192px.svg';
const glyphSvgPinElement = new PinElement({
background: 'white',
glyph: new URL(glyphImgUrl),
glyphSrc: new URL(glyphImgUrl),
});
const glyphSvgMarker = new Marker3DElement({
position: { lat: 37.425, lng: -122.07, altitude: 100 },
Expand All @@ -61,7 +61,7 @@ async function init() {

const pinElement = new PinElement({
background: place.iconBackgroundColor,
glyph: new URL(String(place.svgIconMaskURI)),
glyphSrc: new URL(String(place.svgIconMaskURI)),
});
const placeIconMarker = new Marker3DElement({
position: place.location,
Expand Down
5 changes: 5 additions & 0 deletions dist/samples/3d-marker-graphics/dist/assets/index-CNRaFUgB.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions dist/samples/3d-marker-graphics/dist/assets/index-DUHR-RL-.js

This file was deleted.

2 changes: 1 addition & 1 deletion dist/samples/3d-marker-graphics/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<head>
<title>Map</title>

<script type="module" crossorigin src="./assets/index-DUHR-RL-.js"></script>
<script type="module" crossorigin src="./assets/index-CNRaFUgB.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-DDwKyjRS.css">
</head>
<body>
Expand Down
Loading