通过
Pelias
服务器提供地理编码。
Name | Type | Description |
---|---|---|
url
|
Resource | String | Pelias服务器的端点。 |
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>'
}
}))
});
Members
readonly url : Resource
用于访问Pelias端点的资源。
Methods
geocode (query, type ) → Promise.<Array.< GeocoderService~Result >>
Name | Type | Default | Description |
---|---|---|---|
query
|
String | 要发送到地址解析器服务的查询 | |
type
|
GeocodeType |
GeocodeType.SEARCH
|
可选 要执行的地理编码的类型。 |