Provides geocoding via a Pelias server.
Name | Type | Description |
---|---|---|
url |
Resource | String | The endpoint to the Pelias server. |
Example:
// Configure a Viewer to use the Pelias server hosted by https://geocode.earth/
var viewer = new Cesium.Viewer('cesiumContainer', {
geocoder: new Cesium.PeliasGeocoderService(new Cesium.Resource({
url: 'https://api.geocode.earth/v1/',
queryParameters: {
api_key: '<Your geocode.earth API key>'
}
}))
});
Methods
-
geocode(query, type) → Promise.<Array.<GeocoderResult>>
-
Name Type Default Description query
String The query to be sent to the geocoder service type
GeocodeType GeocodeType.SEARCH
optional The type of geocode to perform. Returns: