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


JavaScript ArcGIS FeatureTemplate.prototype用法及代码示例


基本信息

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

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

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

类: esri/layers/support/FeatureTemplate

继承: FeatureTemplate > Accessor

自从:用于 JavaScript 4.4 的 ArcGIS API

用法说明

FeatureTemplate.prototype函数(或属性)的定义如下:

prototype Object


feature template 说明的原型特征的一个实例。它指定属性字段的默认值并且不包含几何图形。

例子:

// this snippet code shows how to create a feature based on
// feature type prototype. Creates a new feature assigns
// default values for the attributes to the new feature.
view.on("click", function(event) {
  let park = fl.templates[0].prototype;
  newPark = new Graphic({
    attributes: park.attributes,
    geometry: event.mapPoint
  });

  let promise = fl.applyEdits({addFeatures: [newPark]});
  editResultsHandler(promise);
});

相关用法


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