SuperMap.REST.GetLibInfoService

标绘服务中获取标号库信息的服务类

Inherits from

Summary
SuperMap.REST.GetLibInfoService 标绘服务中获取标号库信息的服务类
Constants
EVENT_TYPES {Array(String)}
Properties
eventListeners {Object} 监听器对象,在构造函数中设置此参数(可选),对 GetLibInfoService 支持的两个事件 processCompleted 、processFailed 进行监听,相当于调用 SuperMap.Events.on(eventListeners)。
events {SuperMap.Events} 在 GetLibInfoService 类中处理所有事件的对象,支持两种事件 processCompleted 、processFailed ,服务端成功返回查询结果时触发 processCompleted 事件,服务端返回查询结果失败时触发 processFailed 事件。
Constructor
SuperMap.REST.GetLibInfoService 初始化 GetLibInfoService 类的实例
Functions
destroy 释放资源,将引用资源的属性置空。
processAsync 负责将客户端的更新参数传递到服务端。

Constants

EVENT_TYPES

{Array(String)}

此类支持的事件类型

  • processCompleted 服务端返回查询结果触发该事件。
  • processFailed 服务端返回查询结果失败触发该事件。

Properties

events

{SuperMap.Events} 在 GetLibInfoService 类中处理所有事件的对象,支持两种事件 processCompleted 、processFailed ,服务端成功返回查询结果时触发 processCompleted 事件,服务端返回查询结果失败时触发 processFailed 事件。

例如:

var myService = new SuperMap.REST.GetLibInfoService(url);
myService.events.on({
    "processCompleted": getLibInfosComplted,
      "processFailed": getLibInfosFailed
      }
);
function getLibInfoComplted(getLibInfoCompltedEventArgs){//todo};
function getLibInfoFailed(getLibInfoFailedEventArgs){//todo};

eventListeners

{Object} 监听器对象,在构造函数中设置此参数(可选),对 GetLibInfoService 支持的两个事件 processCompleted 、processFailed 进行监听,相当于调用 SuperMap.Events.on(eventListeners)。

Constructor

SuperMap.REST.GetLibInfoService

初始化 GetLibInfoService 类的实例

例如:

var myService = new SuperMap.REST.GetLibInfoService(url, {eventListeners: {
    "processCompleted": getLibInfoCompleted,
    "processFailed": getLibInfoError },
    libID: 421
});

Parameters

url {String} 标绘服务地址,只需将url设为: http://localhost:8090/iserver/services/plot-jingyong/rest 即可。
options {Object} 参数。

Allowed options properties

eventListeners {Object} 需要被注册的监听器对象。
libID {Integer} 标号库ID。

Functions

destroy

destroy: function()

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

processAsync

processAsync: function( credential )

负责将客户端的更新参数传递到服务端。

destroy: function()
释放资源,将引用资源的属性置空。
processAsync: function( credential )
负责将客户端的更新参数传递到服务端。
服务基类。 抽象类,查询、量算等服务类均继承该类。
Close