当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript ArcGIS Print.templateCustomTextElements用法及代码示例


基本信息

以下是所在类或对象的基本信息。

AMD: require(["esri/widgets/Print"], (Print) => { /* code goes here */ });

ESM: import Print from "@arcgis/core/widgets/Print";

类: esri/widgets/Print

继承: Print > Widget > Accessor

自从:用于 JavaScript 4.2 的 ArcGIS API

用法说明

Print.templateCustomTextElements函数(或属性)的定义如下:

templateCustomTextElements Object[]


自从:ArcGIS 适用于 JavaScript 4.22 的 API

包含 customTextElements name-value 对对象数组的对象,用于自定义打印服务中的每个打印模板。使用此属性更新页面布局上自定义文本元素的文本。

打印小部件调用 GPServer 上的 Get Layout Templates Info 任务以发现每个模板可能的 customTextElements 值。任务名称必须与 Get Layout Templates Info 匹配,模板必须使用 customTextElements 发布,值必须是字符串。在那里找到的值将填充在 Advanced options 下的打印小部件中。这些值可以在“打印”小部件 UI 中被覆盖,或者以编程方式使用此属性。要列出打印服务上可用的所有打印模板以查看使用 customTextElements 发布的模板,请使用 effectiveTemplateCustomTextElements 属性。

例子:

const printWidget = new Print({
   view: view,
   // specify your custom print service
   printServiceUrl: "",
   // `customTextElements` are defined per print template
   // this example has one template with `customTextElements`
   templateCustomTextElements: {
      // if there were more applicable templates, then we would
      // create another object with the template name containing
      // an array of more name-value pairs
      "Landscape_TextElements": [
         // the possible values are defined in the print service
         { "headquarters": "Foxborough, Massachusetts" },
         { "division": "AFC East" },
         { "founded": "1959" }
      ]
   }
});

相关用法


注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 Print.templateCustomTextElements。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。