105 lines
3.2 KiB
HTML
105 lines
3.2 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="Distance display conditions">
|
||
|
<meta name="cesium-sandcastle-labels" content="Showcases">
|
||
|
<title>Cesium Demo</title>
|
||
|
<script type="text/javascript" src="../Sandcastle-header.js"></script>
|
||
|
<script type="text/javascript" src="../../../ThirdParty/requirejs-2.1.20/require.js"></script>
|
||
|
<script type="text/javascript">
|
||
|
require.config({
|
||
|
baseUrl : '../../../Source',
|
||
|
waitSeconds : 60
|
||
|
});
|
||
|
</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 viewer = new Cesium.Viewer('cesiumContainer');
|
||
|
|
||
|
function addBillboardAndRectangle() {
|
||
|
Sandcastle.declare(addBillboardAndRectangle);
|
||
|
|
||
|
viewer.entities.add({
|
||
|
position : Cesium.Cartesian3.fromDegrees(-77, 40.5),
|
||
|
billboard : {
|
||
|
image : '../images/facility.gif',
|
||
|
distanceDisplayCondition : new Cesium.DistanceDisplayCondition(5.5e6)
|
||
|
},
|
||
|
rectangle : {
|
||
|
coordinates : Cesium.Rectangle.fromDegrees(-80.5, 39.7, -75.1, 42.0),
|
||
|
height : 0.0,
|
||
|
material : Cesium.Color.RED.withAlpha(0.5),
|
||
|
outline : true,
|
||
|
outlineColor : Cesium.Color.RED,
|
||
|
distanceDisplayCondition : new Cesium.DistanceDisplayCondition(0.0, 5.5e6)
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
function addPointAndModel() {
|
||
|
Sandcastle.declare(addPointAndModel);
|
||
|
|
||
|
var position = Cesium.Cartesian3.fromDegrees(-75.59777, 40.03883, 0.0);
|
||
|
var heading = Cesium.Math.toRadians(135);
|
||
|
var hpr = new Cesium.HeadingPitchRoll(heading, 0.0, 0.0);
|
||
|
var orientation = Cesium.Transforms.headingPitchRollQuaternion(position, hpr);
|
||
|
|
||
|
viewer.entities.add({
|
||
|
position : position,
|
||
|
orientation : orientation,
|
||
|
point : {
|
||
|
pixelSize : 10,
|
||
|
color : Cesium.Color.YELLOW,
|
||
|
distanceDisplayCondition : new Cesium.DistanceDisplayCondition(250.5)
|
||
|
},
|
||
|
model : {
|
||
|
uri : '../../SampleData/models/GroundVehicle/GroundVehicle.glb',
|
||
|
distanceDisplayCondition : new Cesium.DistanceDisplayCondition(0.0, 250.5)
|
||
|
}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
Sandcastle.addToolbarMenu([{
|
||
|
text : 'Billboard and Primitive',
|
||
|
onselect : function() {
|
||
|
addBillboardAndRectangle();
|
||
|
Sandcastle.highlight(addBillboardAndRectangle);
|
||
|
}
|
||
|
}, {
|
||
|
text : 'Point and Model',
|
||
|
onselect : function() {
|
||
|
addPointAndModel();
|
||
|
Sandcastle.highlight(addPointAndModel);
|
||
|
}
|
||
|
}]);
|
||
|
|
||
|
Sandcastle.reset = function () {
|
||
|
viewer.camera.flyHome(0);
|
||
|
viewer.entities.removeAll();
|
||
|
};
|
||
|
|
||
|
//Sandcastle_End
|
||
|
Sandcastle.finishedLoading();
|
||
|
}
|
||
|
if (typeof Cesium !== 'undefined') {
|
||
|
startup(Cesium);
|
||
|
} else if (typeof require === 'function') {
|
||
|
require(['Cesium'], startup);
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|