Class: AddressMatchService

mapboxgl.supermap.AddressMatchService

地址匹配服务。

new mapboxgl.supermap.AddressMatchService(url, options)

mapboxgl/services/AddressMatchService.js, line 9
Name Type Description
url string

与客户端交互的服务地址。

options Object

交互时所需可选参数。

Name Type Default Description
proxy string 可选

服务代理地址。

withCredentials boolean false 可选

请求是否携带 cookie。

crossOrigin boolean 可选

是否允许跨域请求。

serverType SuperMap.ServerType SuperMap.ServerType.ISERVER 可选

服务来源 ISERVER|IPORTAL|ONLINE。

headers Object 可选

请求头。

Example
new mapboxgl.supermap.AddressMatchService(url,options)
.code(function(result){
    //doSomething
})

Extends

Events

inherited initialized

mapboxgl/services/ServiceBase.js, line 26

构造函数构造成功之后触发。

Properties:
Name Type Description
this Object

this 对象。

Methods

code(params, callback)

mapboxgl/services/AddressMatchService.js, line 32

获取正向地址匹配结果。

Name Type Description
params Object

正向匹配参数。

callback RequestCallback

请求结果的回调函数。

decode(params, callback)

mapboxgl/services/AddressMatchService.js, line 55

获取反向地址匹配结果。

Name Type Description
params Object

反向匹配参数。

callback RequestCallback

请求结果的回调函数。