Class: WebPrintingJobService

mapboxgl.supermap.WebPrintingJobService

Web 打印服务类。 提供:创建 Web 打印任务,获取 Web 打印任务内容,获取 Web 打印输出文档流,获取 Web 打印服务的布局模板信息。

new mapboxgl.supermap.WebPrintingJobService(url, options)

mapboxgl/services/WebPrintingJobService.js, line 10
Name Type Description
url string

资源根地址。请求打印地图服务的 URL 应为:http://{服务器地址}:{服务端口号}/iserver/services/webprinting/rest/webprinting/v1。

options Object

服务交互时所需的可选参数。

Name Type Default Description
proxy string 可选

服务代理地址。

withCredentials boolean false 可选

请求是否携带 cookie。

crossOrigin boolean 可选

是否允许跨域请求。

headers Object 可选

请求头。

Version:
  • 10.1.0
Example
new mapboxgl.supermap.WebPrintingJobService(url)
.createWebPrintingJob(param,function(result){
    //doSomething
})

Extends

Events

inherited initialized

mapboxgl/services/ServiceBase.js, line 26

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

Properties:
Name Type Description
this Object

this 对象。

Methods

createWebPrintingJob(params, callback)

mapboxgl/services/WebPrintingJobService.js, line 34

创建 Web 打印任务。

Name Type Description
params SuperMap.WebPrintingJobParameters

打印的请求参数。

callback RequestCallback

回调函数。

getLayoutTemplates(callback)

mapboxgl/services/WebPrintingJobService.js, line 109

查询 Web 打印服务所有可用的模板信息。

Name Type Description
callback RequestCallback

回调函数。

getPrintingJob(jobId, callback)

mapboxgl/services/WebPrintingJobService.js, line 61

获取 Web 打印输出文档任务。

Name Type Description
jobId String

Web 打印输入文档任务 Id。

callback RequestCallback

回调函数。

getPrintingJobResult(jobId, callback)

mapboxgl/services/WebPrintingJobService.js, line 85

获取 Web 打印任务的输出文档。

Name Type Description
jobId String

Web 打印输入文档任务 Id。

callback RequestCallback

回调函数。