當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。