new GeoprocessingService(url, options)
Usage
// 浏览器
<script type="text/javascript" src="https://iclient.supermap.io/dist/openlayers/iclient-ol.js"></script>
<script>
new ol.supermap.GeoprocessingService(url, options);
</script>
// ES6 Import
import { GeoprocessingService } from '@supermap/iclient-ol';
new GeoprocessingService(url, options);
openlayers/services/GeoprocessingService.js, line 4
Name | Type | Description |
---|---|---|
url |
string |
服务地址。 |
options |
Object |
参数。 |
- Version:
- 10.1.0
Example
//为了安全访问受保护的处理自动化服务,必须通过传递iserver令牌(token),才能正确访问相关资源。
SecurityManager.registerToken(serviceUrl, token);
var geoprocessingService = new 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
Methods
-
cancelJob(identifier, jobId, callback)
openlayers/services/GeoprocessingService.js, line 115 -
取消处理自动化任务的异步执行。
Name Type Description identifier
string 处理自动化工具ID。
jobId
string 处理自动化任务ID。
callback
RequestCallback 回调函数。
-
execute(identifier, parameter, environment, callback)
openlayers/services/GeoprocessingService.js, line 66 -
同步执行处理自动化工具。
Name Type Description identifier
string 处理自动化工具ID。
parameter
Object 处理自动化工具的输入参数。
environment
Object 处理自动化工具的环境参数。
callback
RequestCallback 回调函数。
-
getJobInfo(identifier, jobId, callback)
openlayers/services/GeoprocessingService.js, line 104 -
获取处理自动化任务的执行信息。
Name Type Description identifier
string 处理自动化工具ID。
jobId
string 处理自动化任务ID。
callback
RequestCallback 回调函数。
-
getJobs(identifier, callback)
openlayers/services/GeoprocessingService.js, line 126 -
获取处理自动化服务任务列表。
Name Type Description identifier
string 处理自动化工具ID。(可选,传参代表identifier算子的任务列表,不传参代表所有任务的列表)
callback
RequestCallback 回调函数。
-
getResults(identifier, jobId, filter, callback)
openlayers/services/GeoprocessingService.js, line 136 -
处理自动化工具异步执行的结果,支持结果过滤。
Name Type Description identifier
string 处理自动化工具ID。
jobId
string 处理自动化任务ID。
filter
string 输出异步结果的ID。(可选,传入filter参数时对该处理自动化工具执行的结果进行过滤获取,不填参时显示所有的执行结果)
callback
RequestCallback 回调函数。
-
getTool(identifier, callback)
openlayers/services/GeoprocessingService.js, line 56 -
获取处理自动化工具的ID、名称、描述、输入参数、环境参数和输出结果等相关参数。
Name Type Description identifier
string 处理自动化工具ID。
callback
RequestCallback 回调函数。
-
getTools(callback)
openlayers/services/GeoprocessingService.js, line 47 -
获取处理自动化工具列表。
Name Type Description callback
RequestCallback 回调函数。
-
submitJob(identifier, parameter, environment, callback)
openlayers/services/GeoprocessingService.js, line 78 -
异步执行处理自动化工具。
Name Type Description identifier
string 处理自动化工具ID。
parameter
Object 处理自动化工具的输入参数。
environment
Object 处理自动化工具的环境参数。
callback
RequestCallback 回调函数。
-
waitForJobCompletion(jobId, identifier, options, callback)
openlayers/services/GeoprocessingService.js, line 90 -
获取处理自动化异步执行状态信息。
Name Type Description jobId
string 处理自动化任务ID。
identifier
string 处理自动化工具ID。
options
Object 状态信息参数。
Name Type Description interval
number 定时器时间间隔。
statusCallback
function 回调函数。
callback
RequestCallback 回调函数。