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