Skip to content

Commit 7d3df81

Browse files
Update dist folder [skip ci] (#794)
1 parent b3681c1 commit 7d3df81

File tree

31 files changed

+38
-38
lines changed

31 files changed

+38
-38
lines changed

dist/samples/3d-polygon-click-event/app/index.ts

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

2828
const examplePolygon = new google.maps.maps3d.Polygon3DInteractiveElement(polygonOptions);
2929

30-
examplePolygon.outerCoordinates = [
30+
examplePolygon.path = [
3131
{ lat: 40.7144, lng: -74.0208 },
3232
{ lat: 40.6993, lng: -74.019 },
3333
{ lat: 40.7035, lng: -74.0004 },

dist/samples/3d-polygon-click-event/dist/assets/index-CTsx_RUx.js renamed to dist/samples/3d-polygon-click-event/dist/assets/index-BeEXTpj6.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-polygon-click-event/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-CTsx_RUx.js"></script>
12+
<script type="module" crossorigin src="./assets/index-BeEXTpj6.js"></script>
1313
<link rel="stylesheet" crossorigin href="./assets/index-DDwKyjRS.css">
1414
</head>
1515
<body>

dist/samples/3d-polygon-click-event/docs/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ async function init() {
2222
drawsOccludedSegments: false,
2323
};
2424
const examplePolygon = new google.maps.maps3d.Polygon3DInteractiveElement(polygonOptions);
25-
examplePolygon.outerCoordinates = [
25+
examplePolygon.path = [
2626
{ lat: 40.7144, lng: -74.0208 },
2727
{ lat: 40.6993, lng: -74.019 },
2828
{ lat: 40.7035, lng: -74.0004 },

dist/samples/3d-polygon-click-event/docs/index.ts

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

2828
const examplePolygon = new google.maps.maps3d.Polygon3DInteractiveElement(polygonOptions);
2929

30-
examplePolygon.outerCoordinates = [
30+
examplePolygon.path = [
3131
{ lat: 40.7144, lng: -74.0208 },
3232
{ lat: 40.6993, lng: -74.019 },
3333
{ lat: 40.7035, lng: -74.0004 },

dist/samples/3d-polygon-click-event/jsfiddle/demo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ async function init() {
2222
drawsOccludedSegments: false,
2323
};
2424
const examplePolygon = new google.maps.maps3d.Polygon3DInteractiveElement(polygonOptions);
25-
examplePolygon.outerCoordinates = [
25+
examplePolygon.path = [
2626
{ lat: 40.7144, lng: -74.0208 },
2727
{ lat: 40.6993, lng: -74.019 },
2828
{ lat: 40.7035, lng: -74.0004 },

dist/samples/3d-polygon-extruded-hole/app/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ async function init() {
2727

2828
const examplePolygon = new google.maps.maps3d.Polygon3DElement(polygonOptions);
2929

30-
examplePolygon.outerCoordinates = [
30+
examplePolygon.path = [
3131
{ lat: 40.7144, lng: -74.0208, altitude: 200 },
3232
{ lat: 40.6993, lng: -74.019, altitude: 200 },
3333
{ lat: 40.7035, lng: -74.0004, altitude: 200 }
3434
];
3535

36-
examplePolygon.innerCoordinates = [
36+
examplePolygon.innerPaths = [
3737
[
3838
{ lat: 40.71, lng: -74.0175, altitude: 200 },
3939
{ lat: 40.703, lng: -74.0165, altitude: 200 },

dist/samples/3d-polygon-extruded-hole/dist/assets/index-ChgjZwvp.js renamed to dist/samples/3d-polygon-extruded-hole/dist/assets/index-QiQg49sx.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-polygon-extruded-hole/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-ChgjZwvp.js"></script>
12+
<script type="module" crossorigin src="./assets/index-QiQg49sx.js"></script>
1313
<link rel="stylesheet" crossorigin href="./assets/index-DDwKyjRS.css">
1414
</head>
1515
<body>

dist/samples/3d-polygon-extruded-hole/docs/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ async function init() {
2323
altitudeMode: AltitudeMode.RELATIVE_TO_GROUND
2424
};
2525
const examplePolygon = new google.maps.maps3d.Polygon3DElement(polygonOptions);
26-
examplePolygon.outerCoordinates = [
26+
examplePolygon.path = [
2727
{ lat: 40.7144, lng: -74.0208, altitude: 200 },
2828
{ lat: 40.6993, lng: -74.019, altitude: 200 },
2929
{ lat: 40.7035, lng: -74.0004, altitude: 200 }
3030
];
31-
examplePolygon.innerCoordinates = [
31+
examplePolygon.innerPaths = [
3232
[
3333
{ lat: 40.71, lng: -74.0175, altitude: 200 },
3434
{ lat: 40.703, lng: -74.0165, altitude: 200 },

0 commit comments

Comments
 (0)