UNPKG

cesium

Version:

CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.

26 lines (23 loc) 630 B
/** * The type of geocoding to be performed by a {@link GeocoderService}. * @exports GeocodeType * @see Geocoder */ var GeocodeType = { /** * Perform a search where the input is considered complete. * * @type {Number} * @constant */ SEARCH: 0, /** * Perform an auto-complete using partial input, typically * reserved for providing possible results as a user is typing. * * @type {Number} * @constant */ AUTOCOMPLETE: 1 }; export default Object.freeze(GeocodeType);