SelectionIndicatorViewModel

new Cesium.SelectionIndicatorViewModel(scene, selectionIndicatorElement, container)

The view model for SelectionIndicator.
Name Type Description
scene Scene The scene instance to use for screen-space coordinate conversion.
selectionIndicatorElement Element The element containing all elements that make up the selection indicator.
container Element The DOM element that contains the widget.

Members

Gets or sets the function for converting the world position of the object to the screen space position.
Default Value: SceneTransforms.wgs84ToWindowCoordinates
Example:
selectionIndicatorViewModel.computeScreenSpacePosition = function(position, result) {
    return Cesium.SceneTransforms.wgs84ToWindowCoordinates(scene, position, result);
};
Gets the HTML element containing the selection indicator.
Gets the visibility of the position indicator. This can be false even if an object is selected, when the selected object has no position.
Gets or sets the world position of the object for which to display the selection indicator.
Gets the scene being used.
Gets the HTML element that holds the selection indicator.
Gets or sets the visibility of the selection indicator.

Methods

Animate the indicator to draw attention to the selection.
Animate the indicator to release the selection.
Updates the view of the selection indicator to match the position and content properties of the view model. This function should be called as part of the render loop.

Type Definitions

Cesium.SelectionIndicatorViewModel.ComputeScreenSpacePosition(position, result)Cartesian2

A function that converts the world position of an object to a screen space position.
Name Type Description
position Cartesian3 The position in WGS84 (world) coordinates.
result Cartesian2 An object to return the input position transformed to window coordinates.
Returns:
The modified result parameter.
Need help? The fastest way to get answers is from the community and team on the Cesium Forum.