地图打印仅地图4X
Posted leebokeyuan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了地图打印仅地图4X相关的知识,希望对你有一定的参考价值。
var fullmap = dom.byId("Print"); fullmap.onclick = function () { var printTask = new PrintTask({ url: "http://localhost:6080/arcgis/rest/services/Utilities/PrintingTools/GPServer/Export%20Web%20Map%20Task" }); var template = new PrintTemplate({ exportOptions: { width: 950, height: 850, dpi: 96 }, format: "pdf" //layout: "a3-landscape", //layoutOptions: { // titleText: "biaoti", // authorText: "leejianghua" //}, //preserveScale: false }); var params = new PrintParameters({ view: view, template: template }); printTask.execute(params).then(result, errorResult); function result(evt) { console.log(evt); window.open(evt.url, "_blank"); //在新的标签页打开打印连接 } function errorResult(err) { console.log(err); } }
以上是关于地图打印仅地图4X的主要内容,如果未能解决你的问题,请参考以下文章