ConstructorOptions

sealed interface ConstructorOptions(source)

Initialization options for the first param of Billboard constructor

See also

Properties

Link copied to clipboard
abstract var alignedAxis: Cartesian3?

A Cartesian3 Specifying the aligned axis in world space. Default value - Cartesian3.ZERO

Link copied to clipboard
abstract var color: Color?

A Color Specifying the color that is multiplied with the billboard's texture. Default value - Color.WHITE

Link copied to clipboard

A number specifying the distance from the camera at which to disable the depth test to, for example, prevent clipping against terrain.

Link copied to clipboard

A DistanceDisplayCondition Specifying the distance from the camera at which this billboard will be displayed.

Link copied to clipboard
abstract var eyeOffset: Cartesian3?

A Cartesian3 Specifying the 3D Cartesian offset applied to this billboard in eye coordinates. Default value - Cartesian3.ZERO

Link copied to clipboard
abstract var height: Double?

A number specifying the height of the billboard. If undefined, the image height will be used.

Link copied to clipboard

A HeightReference Specifying the height reference of this billboard. Default value - HeightReference.NONE

Link copied to clipboard

A HorizontalOrigin Specifying the horizontal origin of this billboard. Default value - HorizontalOrigin.CENTER

Link copied to clipboard
abstract var id: Any?

A user-defined object to return when the billboard is picked with Scene.pick.

Link copied to clipboard
abstract var image: HTMLCanvasElement?

A loaded HTMLImageElement, ImageData, or a url to an image to use for the billboard.

Link copied to clipboard

A BoundingRectangle Specifying the sub-region of the image to use for the billboard, rather than the entire image.

Link copied to clipboard
abstract var pixelOffset: Cartesian2?

A Cartesian2 Specifying the pixel offset in screen space from the origin of this billboard. Default value - Cartesian2.ZERO

Link copied to clipboard

A NearFarScalar Specifying near and far pixel offset scaling properties of a Billboard based on the billboard's distance from the camera.

Link copied to clipboard
abstract var position: Cartesian3

The cartesian position of the billboard.

Link copied to clipboard
abstract var rotation: Double?

A number specifying the rotation angle in radians. Default value - 0

Link copied to clipboard
abstract var scale: Double?

A number specifying the uniform scale that is multiplied with the billboard's image size in pixels. Default value - 1.0

Link copied to clipboard

A NearFarScalar Specifying near and far scaling properties of a Billboard based on the billboard's distance from the camera.

Link copied to clipboard
abstract var show: Boolean?

Determines if this billboard will be shown. Default value - true

Link copied to clipboard
abstract var sizeInMeters: Boolean?

A boolean specifying if the billboard size is in meters or pixels.

Link copied to clipboard

A SplitDirection Specifying the split property of the billboard.

Link copied to clipboard

A NearFarScalar Specifying near and far translucency properties of a Billboard based on the billboard's distance from the camera.

Link copied to clipboard

A VerticalOrigin Specifying the vertical origin of this billboard. Default value - VerticalOrigin.CENTER

Link copied to clipboard
abstract var width: Double?

A number specifying the width of the billboard. If undefined, the image width will be used.