main.cesium.ImagerySplitDirection.kt Maven / Gradle / Ivy
The newest version!
// Automatically generated - do not modify!
@file:JsModule("cesium")
package cesium
/**
* The direction to display an ImageryLayer relative to the [Scene.imagerySplitPosition].
* @see Online Documentation
*/
external enum class ImagerySplitDirection {
/**
* Display the ImageryLayer to the left of the [Scene.imagerySplitPosition].
*/
LEFT,
/**
* Always display the ImageryLayer.
*/
NONE,
/**
* Display the ImageryLayer to the right of the [Scene.imagerySplitPosition].
*/
RIGHT,
;
}