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