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


JavaScript ArcGIS Field用法及代码示例


基本信息

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

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

ESM: import Field from "@arcgis/core/layers/support/Field";

类: esri/layers/support/Field

继承: Field > Accessor

自从:用于 JavaScript 4.0 的 ArcGIS API

用法说明

有关图层中每个字段的信息。从客户端图形创建FeatureLayer 时必须构造字段对象。此类允许您定义 FeatureLayer 中每个字段的架构。请注意,您不需要向从服务加载的FeatureLayer 的构造函数添加字段,因为它们已经由服务定义。有关使用此模块的更多信息,请参阅下面的示例。

例子:

// Each object in this array is autocast as
// an instance of esri/layers/support/Field
let fields = [
  {
    name: "ObjectID",
    alias: "ObjectID",
    type: "oid"
  }, {
    name: "title",
    alias: "title",
    type: "string"
  }, {
    name: "type",
    alias: "type",
    type: "string"
  }, {
    name: "mag",
    alias: "Magnitude",
    type: "double"
}];

// add the array of fields to a feature layer
// created from client-side graphics
featureLayer.set({
  fields: fields,
  objectIdField: "ObjectID"
});

相关用法


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