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-polygon-click-event/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async function init() {

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

examplePolygon.outerCoordinates = [
examplePolygon.path = [
{ lat: 40.7144, lng: -74.0208 },
{ lat: 40.6993, lng: -74.019 },
{ lat: 40.7035, lng: -74.0004 },
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-polygon-click-event/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-CTsx_RUx.js"></script>
<script type="module" crossorigin src="./assets/index-BeEXTpj6.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-DDwKyjRS.css">
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-polygon-click-event/docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function init() {
drawsOccludedSegments: false,
};
const examplePolygon = new google.maps.maps3d.Polygon3DInteractiveElement(polygonOptions);
examplePolygon.outerCoordinates = [
examplePolygon.path = [
{ lat: 40.7144, lng: -74.0208 },
{ lat: 40.6993, lng: -74.019 },
{ lat: 40.7035, lng: -74.0004 },
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-polygon-click-event/docs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async function init() {

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

examplePolygon.outerCoordinates = [
examplePolygon.path = [
{ lat: 40.7144, lng: -74.0208 },
{ lat: 40.6993, lng: -74.019 },
{ lat: 40.7035, lng: -74.0004 },
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-polygon-click-event/jsfiddle/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async function init() {
drawsOccludedSegments: false,
};
const examplePolygon = new google.maps.maps3d.Polygon3DInteractiveElement(polygonOptions);
examplePolygon.outerCoordinates = [
examplePolygon.path = [
{ lat: 40.7144, lng: -74.0208 },
{ lat: 40.6993, lng: -74.019 },
{ lat: 40.7035, lng: -74.0004 },
Expand Down
4 changes: 2 additions & 2 deletions dist/samples/3d-polygon-extruded-hole/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ async function init() {

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

examplePolygon.outerCoordinates = [
examplePolygon.path = [
{ lat: 40.7144, lng: -74.0208, altitude: 200 },
{ lat: 40.6993, lng: -74.019, altitude: 200 },
{ lat: 40.7035, lng: -74.0004, altitude: 200 }
];

examplePolygon.innerCoordinates = [
examplePolygon.innerPaths = [
[
{ lat: 40.71, lng: -74.0175, altitude: 200 },
{ lat: 40.703, lng: -74.0165, altitude: 200 },
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-polygon-extruded-hole/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-ChgjZwvp.js"></script>
<script type="module" crossorigin src="./assets/index-QiQg49sx.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-DDwKyjRS.css">
</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions dist/samples/3d-polygon-extruded-hole/docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ async function init() {
altitudeMode: AltitudeMode.RELATIVE_TO_GROUND
};
const examplePolygon = new google.maps.maps3d.Polygon3DElement(polygonOptions);
examplePolygon.outerCoordinates = [
examplePolygon.path = [
{ lat: 40.7144, lng: -74.0208, altitude: 200 },
{ lat: 40.6993, lng: -74.019, altitude: 200 },
{ lat: 40.7035, lng: -74.0004, altitude: 200 }
];
examplePolygon.innerCoordinates = [
examplePolygon.innerPaths = [
[
{ lat: 40.71, lng: -74.0175, altitude: 200 },
{ lat: 40.703, lng: -74.0165, altitude: 200 },
Expand Down
4 changes: 2 additions & 2 deletions dist/samples/3d-polygon-extruded-hole/docs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ async function init() {

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

examplePolygon.outerCoordinates = [
examplePolygon.path = [
{ lat: 40.7144, lng: -74.0208, altitude: 200 },
{ lat: 40.6993, lng: -74.019, altitude: 200 },
{ lat: 40.7035, lng: -74.0004, altitude: 200 }
];

examplePolygon.innerCoordinates = [
examplePolygon.innerPaths = [
[
{ lat: 40.71, lng: -74.0175, altitude: 200 },
{ lat: 40.703, lng: -74.0165, altitude: 200 },
Expand Down
4 changes: 2 additions & 2 deletions dist/samples/3d-polygon-extruded-hole/jsfiddle/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ async function init() {
altitudeMode: AltitudeMode.RELATIVE_TO_GROUND
};
const examplePolygon = new google.maps.maps3d.Polygon3DElement(polygonOptions);
examplePolygon.outerCoordinates = [
examplePolygon.path = [
{ lat: 40.7144, lng: -74.0208, altitude: 200 },
{ lat: 40.6993, lng: -74.019, altitude: 200 },
{ lat: 40.7035, lng: -74.0004, altitude: 200 }
];
examplePolygon.innerCoordinates = [
examplePolygon.innerPaths = [
[
{ lat: 40.71, lng: -74.0175, altitude: 200 },
{ lat: 40.703, lng: -74.0165, altitude: 200 },
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-polygon/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async function init() {

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

examplePolygon.outerCoordinates = [
examplePolygon.path = [
{ lat: 40.7144, lng: -74.0208 },
{ lat: 40.6993, lng: -74.019 },
{ lat: 40.7035, lng: -74.0004 }
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-polygon/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-BCjXzGKQ.js"></script>
<script type="module" crossorigin src="./assets/index-DbIOarS-.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-DDwKyjRS.css">
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-polygon/docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function init() {
drawsOccludedSegments: false,
};
const examplePolygon = new google.maps.maps3d.Polygon3DElement(polygonOptions);
examplePolygon.outerCoordinates = [
examplePolygon.path = [
{ lat: 40.7144, lng: -74.0208 },
{ lat: 40.6993, lng: -74.019 },
{ lat: 40.7035, lng: -74.0004 }
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-polygon/docs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ async function init() {

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

examplePolygon.outerCoordinates = [
examplePolygon.path = [
{ lat: 40.7144, lng: -74.0208 },
{ lat: 40.6993, lng: -74.019 },
{ lat: 40.7035, lng: -74.0004 }
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-polygon/jsfiddle/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async function init() {
drawsOccludedSegments: false,
};
const examplePolygon = new google.maps.maps3d.Polygon3DElement(polygonOptions);
examplePolygon.outerCoordinates = [
examplePolygon.path = [
{ lat: 40.7144, lng: -74.0208 },
{ lat: 40.6993, lng: -74.019 },
{ lat: 40.7035, lng: -74.0004 }
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-polyline-extruded/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async function init() {
document.body.append(map);

const polyline = new Polyline3DElement({
coordinates: [
path: [
{ lat: 37.80515638571346, lng: -122.4032569467164, altitude: 100 },
{ lat: 37.80337073509504, lng: -122.4012878349353, altitude: 100 },
{ lat: 37.79925208843463, lng: -122.3976697250461, altitude: 100 },
Expand Down

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

This file was deleted.

2 changes: 1 addition & 1 deletion dist/samples/3d-polyline-extruded/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-DSWTMiWN.js"></script>
<script type="module" crossorigin src="./assets/index-CHaPMID6.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-DDwKyjRS.css">
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-polyline-extruded/docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async function init() {
});
document.body.append(map);
const polyline = new Polyline3DElement({
coordinates: [
path: [
{ lat: 37.80515638571346, lng: -122.4032569467164, altitude: 100 },
{ lat: 37.80337073509504, lng: -122.4012878349353, altitude: 100 },
{ lat: 37.79925208843463, lng: -122.3976697250461, altitude: 100 },
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-polyline-extruded/docs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async function init() {
document.body.append(map);

const polyline = new Polyline3DElement({
coordinates: [
path: [
{ lat: 37.80515638571346, lng: -122.4032569467164, altitude: 100 },
{ lat: 37.80337073509504, lng: -122.4012878349353, altitude: 100 },
{ lat: 37.79925208843463, lng: -122.3976697250461, altitude: 100 },
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-polyline-extruded/jsfiddle/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async function init() {
});
document.body.append(map);
const polyline = new Polyline3DElement({
coordinates: [
path: [
{ lat: 37.80515638571346, lng: -122.4032569467164, altitude: 100 },
{ lat: 37.80337073509504, lng: -122.4012878349353, altitude: 100 },
{ lat: 37.79925208843463, lng: -122.3976697250461, altitude: 100 },
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-polyline/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async function init() {
document.body.append(map);

const polyline = new Polyline3DElement({
coordinates: [
path: [
{ lat: 37.80515638571346, lng: -122.4032569467164 },
{ lat: 37.80337073509504, lng: -122.4012878349353 },
{ lat: 37.79925208843463, lng: -122.3976697250461 },
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-polyline/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-CgIh4vgg.js"></script>
<script type="module" crossorigin src="./assets/index-B8TE2uSi.js"></script>
<link rel="stylesheet" crossorigin href="./assets/index-DDwKyjRS.css">
</head>
<body>
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-polyline/docs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async function init() {
});
document.body.append(map);
const polyline = new Polyline3DElement({
coordinates: [
path: [
{ lat: 37.80515638571346, lng: -122.4032569467164 },
{ lat: 37.80337073509504, lng: -122.4012878349353 },
{ lat: 37.79925208843463, lng: -122.3976697250461 },
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-polyline/docs/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ async function init() {
document.body.append(map);

const polyline = new Polyline3DElement({
coordinates: [
path: [
{ lat: 37.80515638571346, lng: -122.4032569467164 },
{ lat: 37.80337073509504, lng: -122.4012878349353 },
{ lat: 37.79925208843463, lng: -122.3976697250461 },
Expand Down
2 changes: 1 addition & 1 deletion dist/samples/3d-polyline/jsfiddle/demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async function init() {
});
document.body.append(map);
const polyline = new Polyline3DElement({
coordinates: [
path: [
{ lat: 37.80515638571346, lng: -122.4032569467164 },
{ lat: 37.80337073509504, lng: -122.4012878349353 },
{ lat: 37.79925208843463, lng: -122.3976697250461 },
Expand Down