Globe

new Cesium.Globe(ellipsoid)

The globe rendered in the scene, including its terrain (Globe#terrainProvider) and imagery layers (Globe#imageryLayers). Access the globe using Scene#globe.
Name Type Default Description
ellipsoid Ellipsoid Ellipsoid.WGS84 optional Determines the size and shape of the globe.

Members

atmosphereBrightnessShift : Number

The brightness shift to apply to the atmosphere. Defaults to 0.0 (no shift). A brightness shift of -1.0 is complete darkness, which will let space show through.
Default Value: 0.0

atmosphereHueShift : Number

The hue shift to apply to the atmosphere. Defaults to 0.0 (no shift). A hue shift of 1.0 indicates a complete rotation of the hues available.
Default Value: 0.0

atmosphereSaturationShift : Number

The saturation shift to apply to the atmosphere. Defaults to 0.0 (no shift). A saturation shift of -1.0 is monochrome.
Default Value: 0.0
Gets or sets the color of the globe when no imagery is available.
A property specifying a ClippingPlaneCollection used to selectively disable rendering on the outside of each plane.

depthTestAgainstTerrain : Boolean

True if primitives such as billboards, polylines, labels, etc. should be depth-tested against the terrain surface, or false if such primitives should always be drawn on top of terrain unless they're on the opposite side of the globe. The disadvantage of depth testing primitives against terrain is that slight numerical noise or terrain level-of-detail switched can sometimes make a primitive that should be on the surface disappear underneath it.
Default Value: false
Gets an ellipsoid describing the shape of this globe.

enableLighting : Boolean

Enable lighting the globe with the sun as a light source.
Default Value: true
Gets the collection of image layers that will be rendered on this globe.

readonlyimageryLayersUpdatedEvent : Event

Gets an event that's raised when an imagery layer is added, shown, hidden, moved, or removed.

lightingFadeInDistance : Number

The distance where lighting resumes. This only takes effect when enableLighting or showGroundAtmosphere is true.
Default Value: 20000000.0

lightingFadeOutDistance : Number

The distance where everything becomes lit. This only takes effect when enableLighting or showGroundAtmosphere is true.
Default Value: 10000000.0
Gets or sets the material appearance of the Globe. This can be one of several built-in Material objects or a custom material, scripted with Fabric.

maximumScreenSpaceError : Number

The maximum screen-space error used to drive level-of-detail refinement. Higher values will provide better performance but lower visual quality.
Default Value: 2

nightFadeInDistance : Number

The distance where the darkness of night from the ground atmosphere fades in to an unlit ground atmosphere. This only takes effect when showGroundAtmosphere and enableLighting are true.
Default Value: 50000000.0

nightFadeOutDistance : Number

The distance where the darkness of night from the ground atmosphere fades out to a lit ground atmosphere. This only takes effect when showGroundAtmosphere and enableLighting are true.
Default Value: 10000000.0

oceanNormalMapUrl : String

The normal map to use for rendering waves in the ocean. Setting this property will only have an effect if the configured terrain provider includes a water mask.
Default Value: buildModuleUrl('Assets/Textures/waterNormalsSmall.jpg')
Determines whether the globe casts or receives shadows from each light source. Setting the globe to cast shadows may impact performance since the terrain is rendered again from the light's perspective. Currently only terrain that is in view casts shadows. By default the globe does not cast shadows.
Default Value: ShadowMode.RECEIVE_ONLY

show : Boolean

Determines if the globe will be shown.
Default Value: true

showGroundAtmosphere : Boolean

Enable the ground atmosphere, which is drawn over the globe when viewed from a distance between lightingFadeInDistance and lightingFadeOutDistance.
Default Value: true
Demo:

showWaterEffect : Boolean

True if an animated wave effect should be shown in areas of the globe covered by water; otherwise, false. This property is ignored if the terrainProvider does not provide a water mask.
Default Value: true
The terrain provider providing surface geometry for this globe.

readonlyterrainProviderChanged : Event

Gets an event that's raised when the terrain provider is changed

tileCacheSize : Number

The size of the terrain tile cache, expressed as a number of tiles. Any additional tiles beyond this number will be freed, as long as they aren't needed for rendering this frame. A larger number will consume more memory but will show detail faster when, for example, zooming out and then back in.
Default Value: 100

readonlytileLoadedEvent : Event

Gets an event that's raised when a surface tile is loaded and ready to be rendered.

tileLoadProgressEvent : Event

Gets an event that's raised when the length of the tile load queue has changed since the last render frame. When the load queue is empty, all terrain and imagery for the current view have been loaded. The event passes the new length of the tile load queue.

readonlytilesLoaded : Boolean

Returns true when the tile load queue is empty, false otherwise. When the load queue is empty, all terrain and imagery for the current view have been loaded.

Methods

destroy()

Destroys the WebGL resources held by this object. Destroying an object allows for deterministic release of WebGL resources, instead of relying on the garbage collector to destroy this object.

Once an object is destroyed, it should not be used; calling any function other than isDestroyed will result in a DeveloperError exception. Therefore, assign the return value (undefined) to the object as done in the example.
Throws:
  • DeveloperError : This object was destroyed, i.e., destroy() was called.
Example:
globe = globe && globe.destroy();
See:

getHeight(cartographic)Number|undefined

Get the height of the surface at a given cartographic.
Name Type Description
cartographic Cartographic The cartographic for which to find the height.
Returns:
The height of the cartographic or undefined if it could not be found.

isDestroyed()Boolean

Returns true if this object was destroyed; otherwise, false.

If this object was destroyed, it should not be used; calling any function other than isDestroyed will result in a DeveloperError exception.
Returns:
True if this object was destroyed; otherwise, false.
See:

pick(ray, scene, result)Cartesian3|undefined

Find an intersection between a ray and the globe surface that was rendered. The ray must be given in world coordinates.
Name Type Description
ray Ray The ray to test for intersection.
scene Scene The scene.
result Cartesian3 optional The object onto which to store the result.
Returns:
The intersection or undefined if none was found.
Example:
// find intersection of ray through a pixel and the globe
var ray = viewer.camera.getPickRay(windowCoordinates);
var intersection = globe.pick(ray, scene);