cesium
Version:
CesiumJS is a JavaScript library for creating 3D globes and 2D maps in a web browser without a plugin.
33 lines (29 loc) • 749 B
JavaScript
define([
'../Core/freezeObject'
], function(
freezeObject) {
'use strict';
/**
* 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
};
return freezeObject(GeocodeType);
});