You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

232 lines
6.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no"
/>
<meta name="description" content="CZML Polygon" />
<meta name="cesium-sandcastle-labels" content="CZML" />
<title>Cesium Demo</title>
<script type="text/javascript" src="../Sandcastle-header.js"></script>
<script
type="text/javascript"
src="../../../Build/CesiumUnminified/Cesium.js"
nomodule
></script>
<script type="module" src="../load-cesium-es6.js"></script>
</head>
<body
class="sandcastle-loading"
data-sandcastle-bucket="bucket-requirejs.html"
>
<style>
@import url(../templates/bucket.css);
</style>
<div id="cesiumContainer" class="fullSize"></div>
<div id="loadingOverlay"><h1>Loading...</h1></div>
<div id="toolbar"></div>
<script id="cesium_sandcastle_script">
function startup(Cesium) {
"use strict";
//Sandcastle_Begin
var czml = [
{
id: "document",
name: "CZML Geometries: Polygon",
version: "1.0",
},
{
id: "redPolygon",
name: "Red polygon on surface",
polygon: {
positions: {
cartographicDegrees: [
-115.0,
37.0,
0,
-115.0,
32.0,
0,
-107.0,
33.0,
0,
-102.0,
31.0,
0,
-102.0,
35.0,
0,
],
},
material: {
solidColor: {
color: {
rgba: [255, 0, 0, 255],
},
},
},
},
},
{
id: "checkerboardPolygon",
name: "Checkerboard polygon on surface",
polygon: {
positions: {
cartographicDegrees: [
-94.0,
37.0,
0,
-95.0,
32.0,
0,
-87.0,
33.0,
0,
],
},
material: {
checkerboard: {
evenColor: {
rgba: [255, 0, 0, 255],
},
oddColor: {
rgba: [0, 128, 128, 255],
},
},
},
},
},
{
id: "greenPolygon",
name: "Green extruded polygon",
polygon: {
positions: {
cartographicDegrees: [
-108.0,
42.0,
0,
-100.0,
42.0,
0,
-104.0,
40.0,
0,
],
},
material: {
solidColor: {
color: {
rgba: [0, 255, 0, 255],
},
},
},
extrudedHeight: 500000.0,
closeTop: false,
closeBottom: false,
},
},
{
id: "orangePolygon",
name: "Orange polygon with per-position heights and outline",
polygon: {
positions: {
cartographicDegrees: [
-108.0,
25.0,
100000,
-100.0,
25.0,
100000,
-100.0,
30.0,
100000,
-108.0,
30.0,
300000,
],
},
material: {
solidColor: {
color: {
rgba: [255, 100, 0, 100],
},
},
},
extrudedHeight: 0,
perPositionHeight: true,
outline: true,
outlineColor: {
rgba: [0, 0, 0, 255],
},
},
},
{
id: "bluePolygonWithHoles",
name: "Blue polygon with holes",
polygon: {
positions: {
cartographicDegrees: [
-82.0,
40.8,
0,
-83.0,
36.5,
0,
-76.0,
35.6,
0,
-73.5,
43.6,
0,
],
},
holes: {
cartographicDegrees: [
[
-81.0,
40.0,
0,
-81.0,
38.2,
0,
-79.0,
38.2,
0,
-78.0,
40.8,
0,
],
[-77.5, 36.7, 0, -78.5, 37.0, 0, -76.5, 39.6, 0],
],
},
material: {
solidColor: {
color: {
rgba: [0, 0, 255, 255],
},
},
},
},
},
];
var viewer = new Cesium.Viewer("cesiumContainer");
var dataSourcePromise = Cesium.CzmlDataSource.load(czml);
viewer.dataSources.add(dataSourcePromise);
viewer.zoomTo(dataSourcePromise);
//Sandcastle_End
Sandcastle.finishedLoading();
}
if (typeof Cesium !== "undefined") {
window.startupCalled = true;
startup(Cesium);
}
</script>
</body>
</html>