SuperMap.REST.GetSituationEvolutionInfosService

获取态势推演信息列表

Inherits from

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

Constants

EVENT_TYPES

{Array(String)}

此类支持的事件类型

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

Properties

events

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

例如:

var myService = new SuperMap.REST.GetSituationEvolutionInfosService(url);
myService.events.on({
    "processCompleted": getComplted,
      "processFailed": getFailed
      }
);
function getComplted(GetSituationEvolutionInfosEventArgs){//todo};
function getFailed(GetSituationEvolutionInfosEventArgs){//todo};

eventListeners

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

Constructor

SuperMap.REST.GetSituationEvolutionInfosService

初始化 GetSituationEvolutionInfosService 类的实例

例如:

var myService = new SuperMap.REST.GetSituationEvolutionInfosService(url, {eventListeners: {
    "processCompleted": getSituationEvolutionInfosCompleted,
    "processFailed": getSituationEvolutionInfosError }
});

Parameters

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

Allowed options properties

eventListeners {Object} 需要被注册的监听器对象。

Functions

destroy

destroy: function()

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

processAsync

processAsync: function( params,
credential )

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

Parameters

params {SuperMap.REST.GetSituationEvolutionInfosParameters} 态势推演信息参数。
destroy: function()
释放资源,将引用资源的属性置空。
processAsync: function( params,
credential )
负责将客户端的更新参数传递到服务端。
服务基类。 抽象类,查询、量算等服务类均继承该类。
获取态势推演信息列表。
Close