Viewer

Viewer

new

A base widget for building applications. It composites all of the standard Cesium widgets into one reusable package. The widget can always be extended by using mixins, which add functionality useful for a variety of applications.

Parameters:
Name Type Argument Description
container Element | String The DOM element or ID that will contain the widget.
options Object <optional>
Configuration options for the widget.
Properties
Name Type Argument Default Description
animation Boolean <optional>
true If set to false, the Animation widget will not be created.
baseLayerPicker Boolean <optional>
true If set to false, the BaseLayerPicker widget will not be created.
fullscreenButton Boolean <optional>
true If set to false, the FullscreenButton widget will not be created.
homeButton Boolean <optional>
true If set to false, the HomeButton widget will not be created.
sceneModePicker Boolean <optional>
true If set to false, the SceneModePicker widget will not be created.
timeline Boolean <optional>
true If set to false, the Timeline widget will not be created.
selectedImageryProviderViewModel ImageryProviderViewModel <optional>
The view model for the current base imagery layer, if not supplied the first available base layer is used. This value is only valid if options.baseLayerPicker is set to true.
imageryProviderViewModels Array <optional>
createDefaultBaseLayers() The array of ImageryProviderViewModels to be selectable from the BaseLayerPicker. This value is only valid if options.baseLayerPicker is set to true.
imageryProvider ImageryProvider <optional>
new BingMapsImageryProvider() The imagery provider to use. This value is only valid if options.baseLayerPicker is set to false.
terrainProvider TerrainProvider <optional>
new EllipsoidTerrainProvider() The terrain provider to use
fullscreenElement Element <optional>
container The element to make full screen when the full screen button is pressed.
useDefaultRenderLoop Object <optional>
true True if this widget should control the render loop, false otherwise.
contextOptions Object <optional>
undefined Properties corresponding to WebGLContextAttributes used to create the WebGL context. This object will be passed to the Scene constructor.
sceneMode SceneMode <optional>
SceneMode.SCENE3D The initial scene mode.
Throws:
  • DeveloperError : container is required.
  • DeveloperError : Element with id "container" does not exist in the document.
  • DeveloperError : options.imageryProvider is not available when using the BaseLayerPicker widget, specify options.selectedImageryProviderViewModel instead.
  • DeveloperError : options.selectedImageryProviderViewModel is not available when not using the BaseLayerPicker widget, specify options.imageryProvider instead.
Example
//Initialize the viewer widget with several custom options and mixins.
var viewer = new Viewer('cesiumContainer', {
    //Start in Columbus Viewer
    sceneMode : SceneMode.COLUMBUS_VIEW,
    //Use standard Cesium terrain
    terrainProvider : new CesiumTerrainProvider({
        url : 'http://cesium.agi.com/smallterrain',
        credit : 'Terrain data courtesy Analytical Graphics, Inc.'
    }),
    //Hide the base layer picker
    baseLayerPicker : false,
    //Use OpenStreetMaps
    selectedImageryProviderViewModel : new ImageryProviderViewModel({
        name : 'Open\u00adStreet\u00adMap',
        iconUrl : buildModuleUrl('Widgets/Images/ImageryProviders/openStreetMap.png'),
        tooltip : 'OpenStreetMap (OSM) is a collaborative project to create a free editable map',
        creationFunction : function() {
            return new OpenStreetMapImageryProvider({
                url : 'http://tile.openstreetmap.org/'
            });
        }
    })
});

//Add basic drag and drop functionality
viewer.extend(viewerDragDropMixin);

//Allow users to zoom and follow objects loaded from CZML by clicking on it.
viewer.extend(viewerDynamicObjectMixin);

//Show a pop-up alert if we encounter an error when processing a dropped file
viewer.onDropError.addEventListener(function(dropHandler, name, error) {
    console.log(error);
    window.alert(error);
});
See:
Source:

Members

:Animation

Gets the Animation widget.

:BaseLayerPicker

Gets the BaseLayerPicker.

Gets the canvas.

Gets the primary central body.
Gets the Cesium logo element.

:CesiumWidget

Gets the CesiumWidget.

Gets the clock.

:Element

Gets the parent container.

:DataSourceDisplay

Gets the display used for DataSource visualization.

:DataSourceCollection

Gets the set of DataSource instances to be visualized.

:FullscreenButton

Gets the FullscreenButton.

:HomeButton

Gets the HomeButton.

:Event

Gets the event that will be raised when an error is encountered during the default render loop. The widget instance and the generated exception are the only two parameters passed to the event handler. useDefaultRenderLoop will be set to false whenever an exception is generated and must be set back to true to continue rendering after an exception.

:Event

Gets the event that will be raised when an error is encountered during the default render loop. The viewer instance and the generated exception are the only two parameters passed to the event handler. useDefaultRenderLoop will be set to false whenever an exception is generated and must be set back to true to continue rendering after an exception.

Gets the scene.

:SceneModePicker

Gets the SceneModePicker.

Gets the scene transitioner.

Gets the screen space event handler.

:Timeline

Gets the Timeline widget.

:Boolean

Gets or sets whether or not this widget should control the render loop. If set to true the widget will use requestAnimationFrame to perform rendering and resizing of the widget, as well as drive the simulation clock. If set to false, you must manually call the resize, render methods as part of a custom render loop.

Methods

Destroys the widget. Should be called if permanently removing the widget from layout.

Extends the base viewer functionality with the provided mixin. A mixin may add additional properties, functions, or other behavior to the provided viewer instance.

Parameters:
Name Type Description
mixin The Viewer mixin to add to this instance.
options The options object to be passed to the mixin function.
See:

Returns:
Boolean true if the object has been destroyed, false otherwise.

Renders the scene. This function is called automatically unless useDefaultRenderLoop is set to false;

Resizes the widget to match the container size. This function is called automatically as needed unless useDefaultRenderLoop is set to false.