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


JavaScript ArcGIS Editor.layerInfos用法及代码示例


基本信息

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

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

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

类: esri/widgets/Editor

继承: Editor > Widget > Accessor

自从:用于 JavaScript 4.11 的 ArcGIS API

用法说明

Editor.layerInfos函数(或属性)的定义如下:

layerInfos LayerInfo[]


单个图层的一组编辑配置。

如果您有一个可编辑的要素图层但不希望最终用户进行任何类型的编辑,您可以通过将 enabled 属性设置为 false 来限制这一点。

例子:

const editor = new Editor({
  layerInfos: [{
    view: view,
    layer: featureLayer, // pass in the feature layer,
    formTemplate:  { // autocastable to FormTemplate
      elements: [
        { // autocastable to FieldElement
          type: "field",
          fieldName: "fulladdr",
          label: "Full Address"
        }
      ]
    },
    enabled: true, // default is true, set to false to disable editing functionality
    addEnabled: true, // default is true, set to false to disable the ability to add a new feature
    updateEnabled: false // default is true, set to false to disable the ability to edit an existing feature
    deleteEnabled: false // default is true, set to false to disable the ability to delete features
  }]
});

相关用法


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