通过
Pelias
服务器提供地理编码。
Name | Type | Description |
---|---|---|
url
|
Resource | String | Pelias 服务器的端点。 |
Example:
// Configure a Viewer to use the Pelias server hosted by https://geocode.earth/
const 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>'
}
}))
});
Members
readonly url : Resource
用于访问 Pelias 端点的资源。
Methods
geocode (query, type ) → Promise.<Array.< GeocoderService.Result >>
Name | Type | Default | Description |
---|---|---|---|
query
|
String | 要发送到地理编码器服务的查询 | |
type
|
GeocodeType |
GeocodeType.SEARCH
|
可选 要执行的地理编码类型。 |