Class: geoprocessingService

L.supermap.geoprocessingService

处理自动化服务接口类。

L.supermap.geoprocessingService(url, options)

leaflet/services/GeoprocessingService.js, line 6
Name Type Description
url string

服务地址。

options Object

参数。

Version:
  • 10.1.0
Example
//为了安全访问受保护的处理自动化服务,必须通过传递iserver令牌(token),才能正确访问相关资源。
SuperMap.SecurityManager.registerToken(serviceUrl, token);
 var geoprocessingService = new L.supermap.geoprocessingService("http://localhost:8090/iserver/services/geoprocessing/restjsr/gp/v2")
        geoprocessingService.submitJob(identifier,params, environments, function(serverResult) {
            console.log(serverResult.result);
            var jobID = serverResult.result.jobID;
            var options = {
                interval: 5000,
                statusCallback: function(state) {
                    console.log("Job Status: ", state);
                }
            };
            geoprocessingService.waitForJobCompletion(jobID, identifier, options, function(serverResult) {
                console.log(serverResult);
            })
        })
 

Extends

Events

inherited destroy

leaflet/services/ServiceBase.js, line 51

资源释放成功后触发。

Properties:
Name Type Description
this L.supermap.ServiceBase

this 对象。

inherited initialized

leaflet/services/ServiceBase.js, line 38

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

Properties:
Name Type Description
this L.supermap.ServiceBase

this 对象。

Methods

cancelJob(identifier, jobId, callback)

leaflet/services/GeoprocessingService.js, line 178

取消处理自动化任务的异步执行。

Name Type Description
identifier string

处理自动化工具ID。

jobId string

处理自动化任务ID。

callback RequestCallback

回调函数。

inherited destroy()

leaflet/services/ServiceBase.js, line 46

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

execute(identifier, parameter, environment, callback)

leaflet/services/GeoprocessingService.js, line 85

同步执行处理自动化工具。

Name Type Description
identifier string

处理自动化工具ID。

parameter Object

处理自动化工具的输入参数。

environment Object

处理自动化工具的环境参数。

callback RequestCallback

回调函数。

getJobInfo(identifier, jobId, callback)

leaflet/services/GeoprocessingService.js, line 156

获取处理自动化任务的执行信息。

Name Type Description
identifier string

处理自动化工具ID。

jobId string

处理自动化任务ID。

callback RequestCallback

回调函数。

getJobs(identifier, callback)

leaflet/services/GeoprocessingService.js, line 200

获取处理自动化服务任务列表。

Name Type Description
identifier string

处理自动化工具ID。(传参代表identifier算子的任务列表,不传参代表所有任务的列表)

callback RequestCallback

回调函数。

getResults(identifier, jobId, filter, callback)

leaflet/services/GeoprocessingService.js, line 221

处理自动化工具异步执行的结果,支持结果过滤。

Name Type Description
identifier string

处理自动化工具ID。

jobId string

处理自动化任务ID。

filter string

输出异步结果的id。(可选,传入filter参数时对该处理自动化工具执行的结果进行过滤获取,不填参时显示所有的执行结果)

callback RequestCallback

请求结果的回调函数。

getTool(identifier, callback)

leaflet/services/GeoprocessingService.js, line 64

获取工具的ID、名称、描述、输入参数、环境参数和输出结果等相关参数。

Name Type Description
identifier string

处理自动化工具ID。

callback RequestCallback

请求结果的回调函数。

getTools(callback)

leaflet/services/GeoprocessingService.js, line 44

获取处理自动化工具列表。

Name Type Description
callback RequestCallback

请求结果的回调函数。

submitJob(identifier, parameter, environment, callback)

leaflet/services/GeoprocessingService.js, line 108

异步执行处理自动化工具。

Name Type Description
identifier string

处理自动化工具ID。

parameter Object

处理自动化工具的输入参数。

environment Object

处理自动化工具的环境参数。

callback RequestCallback

回调函数。

waitForJobCompletion(jobId, identifier, options, callback)

leaflet/services/GeoprocessingService.js, line 131

获取处理自动化异步执行状态信息。

Name Type Description
jobId string

处理自动化任务ID。

identifier string

处理自动化工具ID。

options Object

状态信息参数。

Name Type Description
interval number

定时器时间间隔。

statusCallback RequestCallback

任务状态的回调函数。

callback Callback

回调函数。