VoxelProvider

new Cesium.VoxelProvider()

Provides voxel data. Intended to be used with VoxelPrimitive. This type describes an interface and is not intended to be instantiated directly.
Experimental

This feature is not final and is subject to change without Cesium's standard deprecation policy.

See:

Members

Gets the metadata component types.
Gets the number of voxels per dimension of a tile. This is the same for all tiles in the dataset.
A transform from local space to global space.
Default Value: Matrix4.IDENTITY

readonly maxBounds : Cartesian3|undefined

Gets the maximum bounds. If undefined, the shape's default maximum bounds will be used instead.

readonly maximumTileCount : number|undefined

The maximum number of tiles that exist for this provider. This value is used as a hint to the voxel renderer to allocate an appropriate amount of GPU memory. If this value is not known it can be undefined.

readonly maximumValues : Array.<Array.<number>>|undefined

Gets the metadata maximum values.
Gets the ordering of the metadata in the buffers.
Default Value: VoxelMetadataOrder.XYZ

readonly minBounds : Cartesian3|undefined

Gets the minimum bounds. If undefined, the shape's default minimum bounds will be used instead.

readonly minimumValues : Array.<Array.<number>>|undefined

Gets the metadata minimum values.

readonly names : Array.<string>

Gets the metadata names.
Gets the number of padding voxels after the tile. This improves rendering quality when sampling the edge of a tile, but it increases memory usage.
Default Value: Cartesian3.ZERO
Gets the number of padding voxels before the tile. This improves rendering quality when sampling the edge of a tile, but it increases memory usage.
Default Value: Cartesian3.ZERO
Gets the VoxelShapeType
A transform from shape space to local space.
Default Value: Matrix4.IDENTITY
Gets the metadata types.

Methods

requestData(options)Promise.<VoxelContent>|undefined

Requests the data for a given tile.
Name Type Description
options object optional Object with the following properties:
Name Type Default Description
tileLevel number 0 optional The tile's level.
tileX number 0 optional The tile's X coordinate.
tileY number 0 optional The tile's Y coordinate.
tileZ number 0 optional The tile's Z coordinate.
Returns:
A promise resolving to a VoxelContent containing the data for the tile, or undefined if the request could not be scheduled this frame.
Need help? The fastest way to get answers is from the community and team on the Cesium Forum.