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


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