-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8726 from CesiumGS/globe-alpha
Globe translucency
- Loading branch information
Showing
34 changed files
with
3,605 additions
and
123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,190 @@ | ||
<!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="View the interior of the globe by enabling translucency on imagery layers." | ||
/> | ||
<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="../../../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 viewer = new Cesium.Viewer("cesiumContainer", { | ||
orderIndependentTranslucency: false, | ||
}); | ||
|
||
var scene = viewer.scene; | ||
var globe = scene.globe; | ||
var baseLayer = viewer.scene.imageryLayers.get(0); | ||
|
||
scene.screenSpaceCameraController.enableCollisionDetection = false; | ||
|
||
function reset() { | ||
globe.showGroundAtmosphere = true; | ||
globe.baseColor = Cesium.Color.BLUE; | ||
globe.translucency.enabled = false; | ||
globe.translucency.frontFaceAlpha = 1.0; | ||
globe.undergroundColor = Cesium.Color.BLACK; | ||
globe.translucency.rectangle = undefined; | ||
baseLayer.colorToAlpha = undefined; | ||
} | ||
|
||
function useTranslucencyMask() { | ||
globe.showGroundAtmosphere = false; | ||
globe.baseColor = Cesium.Color.TRANSPARENT; | ||
globe.translucency.enabled = true; | ||
globe.undergroundColor = undefined; | ||
|
||
// Set oceans on Bing base layer to transparent | ||
baseLayer.colorToAlpha = new Cesium.Color(0.0, 0.016, 0.059); | ||
baseLayer.colorToAlphaThreshold = 0.2; | ||
} | ||
|
||
function useTranslucencyRectangle() { | ||
globe.translucency.enabled = true; | ||
globe.undergroundColor = undefined; | ||
globe.translucency.frontFaceAlpha = 0.25; | ||
globe.translucency.rectangle = Cesium.Rectangle.fromDegrees( | ||
-120.0, | ||
0.0, | ||
-30.0, | ||
45.0 | ||
); | ||
} | ||
|
||
Sandcastle.addToolbarMenu([ | ||
{ | ||
text: "Translucency mask", | ||
onselect: function () { | ||
reset(); | ||
useTranslucencyMask(); | ||
}, | ||
}, | ||
{ | ||
text: "Translucency rectangle", | ||
onselect: function () { | ||
reset(); | ||
useTranslucencyRectangle(); | ||
}, | ||
}, | ||
]); | ||
|
||
var innerCoreRadius = 1250000; | ||
var outerCoreRadius = 3450000; | ||
var mantleRadius = 6350000.0; | ||
|
||
var innerCore = viewer.entities.add({ | ||
name: "Inner Core", | ||
position: Cesium.Cartesian3.ZERO, | ||
ellipsoid: { | ||
radii: new Cesium.Cartesian3( | ||
innerCoreRadius, | ||
innerCoreRadius, | ||
innerCoreRadius | ||
), | ||
material: Cesium.Color.YELLOW, | ||
}, | ||
}); | ||
|
||
var outerCore = viewer.entities.add({ | ||
name: "Outer Core", | ||
position: Cesium.Cartesian3.ZERO, | ||
ellipsoid: { | ||
radii: new Cesium.Cartesian3( | ||
outerCoreRadius, | ||
outerCoreRadius, | ||
outerCoreRadius | ||
), | ||
material: Cesium.Color.ORANGE, | ||
}, | ||
}); | ||
|
||
var mantle = viewer.entities.add({ | ||
name: "Mantle", | ||
position: Cesium.Cartesian3.ZERO, | ||
ellipsoid: { | ||
radii: new Cesium.Cartesian3( | ||
mantleRadius, | ||
mantleRadius, | ||
mantleRadius | ||
), | ||
material: Cesium.Color.RED, | ||
}, | ||
}); | ||
|
||
innerCore.show = true; | ||
outerCore.show = false; | ||
mantle.show = false; | ||
|
||
var options = [ | ||
{ | ||
text: "Inner Core", | ||
onselect: function () { | ||
innerCore.show = true; | ||
outerCore.show = false; | ||
mantle.show = false; | ||
}, | ||
}, | ||
{ | ||
text: "Outer Core", | ||
onselect: function () { | ||
innerCore.show = false; | ||
outerCore.show = true; | ||
mantle.show = false; | ||
}, | ||
}, | ||
{ | ||
text: "Mantle", | ||
onselect: function () { | ||
innerCore.show = false; | ||
outerCore.show = false; | ||
mantle.show = true; | ||
}, | ||
}, | ||
{ | ||
text: "None", | ||
onselect: function () { | ||
innerCore.show = false; | ||
outerCore.show = false; | ||
mantle.show = false; | ||
}, | ||
}, | ||
]; | ||
|
||
Sandcastle.addToolbarMenu(options); | ||
//Sandcastle_End | ||
Sandcastle.finishedLoading(); | ||
} | ||
if (typeof Cesium !== "undefined") { | ||
window.startupCalled = true; | ||
startup(Cesium); | ||
} | ||
</script> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.