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


JavaScript ArcGIS FieldsContent用法及代码示例


基本信息

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

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

ESM: import FieldsContent from "@arcgis/core/popup/content/FieldsContent";

类: esri/popup/content/FieldsContent

继承: FieldsContent > Content > Accessor

自从:用于 JavaScript 4.11 的 ArcGIS API

用法说明

FieldsContent 弹出元素表示与函数关联的FieldInfo。如果未在内容中设置,它将恢复为 PopupTemplate.fieldInfos 属性中可能设置的任何内容。

popuptemplate-fields-element

例子:

// Create the FieldsInfo for the FieldsContent popup element
// Field Info 1
let fieldInfo1 = new FieldInfo({
  fieldName: "relationships/0/Point_Count_COMMON", // using a related table's field
  label: "Sum of species tree count",
  visible: true,
  format: fieldFormat2,
  statisticType: "sum"
});

// Field Info 2
let fieldInfo2 = new FieldInfo({
  fieldName: "BLOCKCE10",
  label: "Block",
  visible: true
});

// Create the FieldsContent element
let fieldsElement = new FieldsContent({
  fieldInfos: [fieldInfo1, fieldInfo2]
});

相关用法


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