SuperMap.REST.FindServiceAreasService

服务区分析服务类。 服务区分析是以指定服务站点为中心, 在一定服务范围内查找网络上服务站点能够提供服务的区域范围。 该类负责将客户端指定的服务区分析参数传递给服务端,并接收服务端返回的结果数据。 服务区分析结果通过该类支持的事件的监听函数参数获取,参数类型为 {SuperMap.REST.FindServiceAreasEventArgs}; 获取的结果数据包括 originResult 、result 两种, 其中,originResult 为服务端返回的用 JSON 对象表示的服务区分析结果数据,result 为服务端返回的服务区分析结果数据,保存在 {SuperMap.REST.FindServiceAreasResult} 对象中。

Inherits from

Summary
SuperMap.REST.FindServiceAreasService 服务区分析服务类。 服务区分析是以指定服务站点为中心, 在一定服务范围内查找网络上服务站点能够提供服务的区域范围。 该类负责将客户端指定的服务区分析参数传递给服务端,并接收服务端返回的结果数据。 服务区分析结果通过该类支持的事件的监听函数参数获取,参数类型为 {SuperMap.REST.FindServiceAreasEventArgs}; 获取的结果数据包括 originResult 、result 两种, 其中,originResult 为服务端返回的用 JSON 对象表示的服务区分析结果数据,result 为服务端返回的服务区分析结果数据,保存在 {SuperMap.REST.FindServiceAreasResult} 对象中。
Constants
EVENT_TYPES {Array(String)} 此类支持的事件类型。
Properties
eventListeners {Object} 监听器对象,在构造函数中设置此参数(可选),对 FindServiceAreasService 支持的两个事件 processCompleted 、processFailed 进行监听,相当于调用 SuperMap.Events.on(eventListeners)。
events {SuperMap.Events} 在 FindServiceAreasService 类中处理所有事件的对象,支持 processCompleted 、processFailed 两种事件,服务端成功返回服务区分析结果时触发 processCompleted 事件,服务端返回服务区分析结果失败时触发 processFailed 事件。
Constructor
SuperMap.REST.FindServiceAreasService 服务区分析服务类构造函数。
Functions
destroy 释放资源,将引用资源的属性置空。
processAsync 负责将客户端的查询参数传递到服务端。

Constants

EVENT_TYPES

{Array(String)} 此类支持的事件类型。

  • processCompleted 服务端返回服务区分析结果触发该事件。
  • processFailed 服务端返回服务区分析结果失败触发该事件。

Properties

events

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

例如:

var myFindServiceAreasService = new SuperMap.REST.FindServiceAreasService(url);
myFindServiceAreasService.events.on({"processCompleted": findServiceAreasCompleted, "processFailed": findServiceAreasError});
function findServiceAreasCompleted(findServiceAreasEventArgs){//todo};
function findServiceAreasError(findServiceAreasEventArgs){//todo};

eventListeners

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

Constructor

SuperMap.REST.FindServiceAreasService

服务区分析服务类构造函数。

例如

var myFindServiceAreasService = new SuperMap.REST.FindServiceAreasService(url, {eventListeners: {"processCompleted": findServiceAreasCompleted, "processFailed": findServiceAreasError}});

Parameters

url {String} 网络分析服务地址。请求网络分析服务,URL应为: http://{服务器地址}:{服务端口号}/iserver/services/{网络分析服务名}/rest/networkanalyst/{网络数据集@数据源}; 例如:”http://localhost:8090/iserver/services/components-rest/rest/networkanalyst/RoadNet@Changchun”。
options {Object} 参数。

Allowed options properties

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

Functions

destroy

destroy: function()

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

processAsync

processAsync: function( params )

负责将客户端的查询参数传递到服务端。

Parameters

params {SuperMap.REST.FindServiceAreasParameters}
服务区分析服务事件数据类。 类包含了从服务端传回的服务区分析结果数据。
服务区分析结果类。 从该类中可以获取服务区服务范围,以及表示这些范围的图片。
destroy: function()
释放资源,将引用资源的属性置空。
processAsync: function( params )
负责将客户端的查询参数传递到服务端。
服务基类。 抽象类,查询、量算等服务类均继承该类。
服务区分析参数类。 服务区分析是以指定服务站点为中心,在一定服务范围内查找网络上服务站点能够提供服务的区域范围。 例如:计算某快餐店能够在30分钟内送达快餐的区域。
Close