main.cesium.GeocodeType.kt Maven / Gradle / Ivy
// Automatically generated - do not modify!
package cesium
/**
* The type of geocoding to be performed by a [GeocoderService].
* @see Online Documentation
*/
@JsName("\$cesium__GeocodeType")
external object /* enum */ GeocodeType {
/**
* Perform a search where the input is considered complete.
*/
val SEARCH: GeocodeType
/**
* Perform an auto-complete using partial input, typically
* reserved for providing possible results as a user is typing.
*/
val AUTOCOMPLETE: GeocodeType
}