main.cesium.HeightReference.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
package cesium
/**
* Represents the position relative to the terrain.
* @see Online Documentation
*/
@JsName("\$cesium__HeightReference")
external object /* enum */ HeightReference {
/**
* The position is absolute.
*/
val NONE: HeightReference
/**
* The position is clamped to the terrain.
*/
val CLAMP_TO_GROUND: HeightReference
/**
* The position height is the height above the terrain.
*/
val RELATIVE_TO_GROUND: HeightReference
}