main.cesium.LabelStyle.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
package cesium
/**
* Describes how to draw a label.
* @see Online Documentation
*/
@JsName("\$cesium__LabelStyle")
external object /* enum */ LabelStyle {
/**
* Fill the text of the label, but do not outline.
*/
val FILL: LabelStyle
/**
* Outline the text of the label, but do not fill.
*/
val OUTLINE: LabelStyle
/**
* Fill and outline the text of the label.
*/
val FILL_AND_OUTLINE: LabelStyle
}