mirror of https://github.com/CesiumGS/cesium.git
74 lines
2.5 KiB
HTML
74 lines
2.5 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="Use the CesiumWidget to create a simple 3D globe."
|
|
/>
|
|
<meta name="cesium-sandcastle-labels" content="Beginner, Showcases" />
|
|
<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">
|
|
window.startup = async function (Cesium) {
|
|
"use strict";
|
|
//Sandcastle_Begin
|
|
// Cesium.CesiumWidget is similar to Cesium.Viewer, but
|
|
// is trimmed down. It is just a widget for the 3D globe;
|
|
// it does not include the animation, imagery selection,
|
|
// and other widgets, nor does it depend on the third-party
|
|
// Knockout library.
|
|
const widget = new Cesium.CesiumWidget("cesiumContainer", {
|
|
shouldAnimate: true,
|
|
});
|
|
|
|
const position = Cesium.Cartesian3.fromDegrees(-123.0744619, 44.0503706, 500);
|
|
const heading = Cesium.Math.toRadians(135);
|
|
const pitch = 0;
|
|
const roll = 0;
|
|
const hpr = new Cesium.HeadingPitchRoll(heading, pitch, roll);
|
|
const orientation = Cesium.Transforms.headingPitchRollQuaternion(position, hpr);
|
|
|
|
const entity = widget.entities.add({
|
|
position: position,
|
|
orientation: orientation,
|
|
model: {
|
|
uri: "../../SampleData/models/CesiumAir/Cesium_Air.glb",
|
|
minimumPixelSize: 128,
|
|
maximumScale: 20000,
|
|
},
|
|
});
|
|
widget.trackedEntity = entity;
|
|
//Sandcastle_End
|
|
};
|
|
if (typeof Cesium !== "undefined") {
|
|
window.startupCalled = true;
|
|
window.startup(Cesium).catch((error) => {
|
|
"use strict";
|
|
console.error(error);
|
|
});
|
|
Sandcastle.finishedLoading();
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|