码迷,mamicode.com
首页 > 其他好文 > 详细

地图打印仅地图4X

时间:2020-01-04 11:07:24      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:title   als   var   tle   export   arcgis   form   func   lse   

            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

标签:title   als   var   tle   export   arcgis   form   func   lse   

原文地址:https://www.cnblogs.com/leebokeyuan/p/12147957.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!