SuperMap.REST.FindClosestFacilitiesService

最近设施分析服务类。 最近设施分析是指在网络上给定一个事件点和一组设施点, 查找从事件点到设施点(或从设施点到事件点)以最小耗费能到达的最佳路径。 该类负责将客户端指定的最近设施分析参数传递给服务端,并接收服务端返回的结果数据。 最近设施分析结果通过该类支持的事件的监听函数参数获取,参数类型为 {SuperMap.REST.FindClosestFacilitiesEventArgs}; 获取的结果数据包括 originResult 、result 两种, 其中,originResult 为服务端返回的用 JSON 对象表示的最近设施分析结果数据,result 为服务端返回的最近设施分析结果数据,保存在 {SuperMap.REST.FindClosestFacilityResult} 对象中。

Inherits from

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

Constants

EVENT_TYPES

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

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

Properties

events

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

例如:

var myfindClosestFacilitiesService = new SuperMap.REST.FindClosestFacilitiesService(url);
myfindClosestFacilitiesService.events.on({
    "processCompleted": findClosestFacilitiesCompleted,
    "processFailed": findClosestFacilitiesError
    }
 );
function findClosestFacilitiesCompleted(findClosestFacilitiesEventArgs){//todo};
function findClosestFacilitiesError(findClosestFacilitiesEventArgs){//todo};

eventListeners

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

Constructor

SuperMap.REST.FindClosestFacilitiesService

最近设施分析服务类构造函数。

例如:

var myfindClosestFacilitiesService = new SuperMap.REST.FindClosestFacilitiesService(url, {
    eventListeners: {
        "processCompleted": findClosestFacilitiesCompleted,
        "processFailed": findClosestFacilitiesError
        }
});

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.FindClosestFacilitiesParameters}
最近设施分析服务事件数据类。 该类包含了从服务端传回的最近设施分析结果数据。
最近设施分析服务结果类。 该类包含了分析得到的最近设施点、设施点与事件点间的弧段、结点等信息。
destroy: function()
释放资源,将引用的资源属性置空。
processAsync: function( params )
负责将客户端的查询参数传递到服务端。
服务基类。 抽象类,查询、量算等服务类均继承该类。
最近设施分析参数类。 最近设施分析是指在网络上给定一个事件点和一组设施点,查找从事件点到设施点(或从设施点到事件点)以最小耗费能到达的最佳路径。 设施点一般为学校、超市、加油站等服务设施;事件点为需要服务设施的事件位置。 例如事件发生点是一起交通事故,要求查找在10分钟内能到达的最近医院,超过10分钟能到达的都不予考虑。此例中,事故发生地即是一个事件点,周边的医院则是设施点。 最近设施查找实际上也是一种路径分析,因此对路径分析起作用的障碍边、障碍点、转向表、耗费等属性在最近设施分析时同样可设置。
Close