itowns
Version:
A JS/WebGL framework for 3D geospatial data visualization
20 lines • 555 B
JavaScript
/**
* Enumeration of implemented 3D Tiles classes. Used in C3DTExtensions to
* now which classes ask for extension parsing.
*
* @enum {Object} C3DTilesTypes
*
* @property {String} tileset - value: 'tileset'
* @property {String} batchtable - value: 'batchtable'
* @property {String} boundingVolume - value: 'bounding volume'
*/
export const C3DTilesTypes = {
tileset: 'tileset',
batchtable: 'batchtable',
boundingVolume: 'boundingVolume'
};
export const C3DTilesBoundingVolumeTypes = {
region: 'region',
box: 'box',
sphere: 'sphere'
};