-
feature
Graphic
包含可编辑属性的关联要素。访问它的常用方法是通过MapView 或SceneView's
hitTest()
方法。例子:
// Check if a user clicked on an incident feature. view.on("click", function(event) { view.hitTest(event).then(function(response) { // Display the attributes of selected incident feature in the form if (response.results[0].graphic && response.results[0].graphic.layer.id == "incidentsLayer") { formVM.feature = result.results[0].graphic } }); });
基本信息
以下是所在类或对象的基本信息。
AMD:
require(["esri/widgets/FeatureForm"], (FeatureForm) => { /* code goes here */ });
ESM:
import FeatureForm from "@arcgis/core/widgets/FeatureForm";
类:
esri/widgets/FeatureForm
继承: FeatureForm > Widget > Accessor
自从:用于 JavaScript 4.9 的 ArcGIS API
用法说明
FeatureForm.feature
函数(或属性)的定义如下:
相关用法
- JavaScript ArcGIS FeatureForm.formTemplate用法及代码示例
- JavaScript ArcGIS FeatureForm.when用法及代码示例
- JavaScript ArcGIS FeatureForm.getValues用法及代码示例
- JavaScript ArcGIS FeatureForm.visible用法及代码示例
- JavaScript ArcGIS FeatureForm.classes用法及代码示例
- JavaScript ArcGIS FeatureForm.container用法及代码示例
- JavaScript ArcGIS FeatureForm.submit用法及代码示例
- JavaScript ArcGIS FeatureForm.on用法及代码示例
- JavaScript ArcGIS FeatureForm.headingLevel用法及代码示例
- JavaScript ArcGIS FeatureForm.layer用法及代码示例
- JavaScript ArcGIS FeatureForm用法及代码示例
- JavaScript ArcGIS FeatureForm submit事件用法及代码示例
- JavaScript ArcGIS FeatureFilter用法及代码示例
- JavaScript ArcGIS FeatureFilter.spatialRelationship用法及代码示例
- JavaScript ArcGIS FeatureFilter.createQuery用法及代码示例
- JavaScript ArcGIS FeatureFilter.where用法及代码示例
- JavaScript ArcGIS FeatureLayer.queryExtent用法及代码示例
- JavaScript ArcGIS FeatureLayer.when用法及代码示例
- JavaScript ArcGIS FeatureLayer refresh事件用法及代码示例
- JavaScript ArcGIS FeatureLayer.getFieldDomain用法及代码示例
- JavaScript ArcGIS FeatureLayer.queryFeatureCount用法及代码示例
- JavaScript ArcGIS Feature.visible用法及代码示例
- JavaScript ArcGIS FeatureLayer.formTemplate用法及代码示例
- JavaScript ArcGIS Feature用法及代码示例
- JavaScript ArcGIS FeatureLayer.relationships用法及代码示例
注:本文由纯净天空筛选整理自arcgis.com大神的英文原创作品 FeatureForm.feature。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。