Class: layerInfoService

L.supermap.layerInfoService

图层信息类。

L.supermap.layerInfoService(url, options)

leaflet/services/LayerInfoService.js, line 18
Name Type Description
url string

与服务端交互的地图服务地址。请求地图服务 URL 应为:http://{服务器地址}:{服务端口号}/iserver/services/{地图服务名}/rest/maps/{地图名}"。

options Object

参数。

Name Type Default Description
proxy string 可选

服务代理地址。

serverType SuperMap.ServerType SuperMap.ServerType.ISERVER 可选

服务来源 ISERVER|IPORTAL|ONLINE。

withCredentials boolean false 可选

请求是否携带 cookie。

crossOrigin boolean 可选

是否允许跨域请求。

headers Object 可选

请求头。

Example
L.supermap.layerInfoService(url).getLayersInfo(function(result){
  //doSomething
})

Extends

Events

inherited destroy

leaflet/services/ServiceBase.js, line 54

资源释放成功后触发。

Properties:
Name Type Description
this L.supermap.ServiceBase

this 对象。

inherited initialized

leaflet/services/ServiceBase.js, line 41

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

Properties:
Name Type Description
this L.supermap.ServiceBase

this 对象。

Methods

inherited destroy()

leaflet/services/ServiceBase.js, line 49

释放资源,将引用的资源属性置空。

getLayersInfo(callback)

leaflet/services/LayerInfoService.js, line 41

获取图层信息。

Name Type Description
callback RequestCallback

获取信息完成后的回调函数。

setLayerInfo(params, callback)

leaflet/services/LayerInfoService.js, line 62

设置图层信息服务。可以实现临时图层中子图层的修改。

Name Type Description
params SuperMap.SetLayerInfoParameters

图层信息相关参数。

callback RequestCallback

回调函数。

setLayersInfo(params, callback)

leaflet/services/LayerInfoService.js, line 97

设置图层信息。可以实现创建新的临时图层和对现有临时图层的修改。

Name Type Description
params SuperMap.SetLayersInfoParameters

图层信息设置参数,包括临时图层。

callback RequestCallback

回调函数。

setLayerStatus(params, callback)

leaflet/services/LayerInfoService.js, line 132

负责将子图层显示控制参数传递到服务端,并获取服务端返回的图层显示状态。

Name Type Description
params SuperMap.SetLayerStatusParameters

图层信息显示控制参数。

callback RequestCallback

回调函数。