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


JavaScript ArcGIS Feature用法及代码示例


基本信息

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

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

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

类: esri/widgets/Feature

继承: Feature > Widget > Accessor

自从:用于 JavaScript 4.7 的 ArcGIS API

用法说明

Feature 小部件根据其 PopupTemplate 显示图形。此小部件在您想要显示有关函数的信息但不使用 Popup 的情况下很有用。

当弹出模板将 Arcade 表达式定义为任何弹出模板内容中引用的计算值或表达式元素时,必须在要执行的 Arcade 的要素小部件中定义Map和 SpatialReference 属性。

有关获得对小部件样式的完全控制的信息,请参阅Styling 主题。

例子:

// Create graphic
let graphic = new Graphic({
  geometry: view.center,
  popupTemplate: {
    content: [{
      // add popupTemplate content
    }]
  }
});

// map and spatialReference must be set for Arcade
// expressions to execute and display content
let feature = new Feature({
  graphic: graphic,
  map: map,
  spatialReference: spatialReference
});

view.ui.add(feature, "top-right");

相关用法


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