import DimensionFeatureGraphicOrigin from "@arcgis/core/graphic/DimensionFeatureGraphicOrigin.js";const DimensionFeatureGraphicOrigin = await $arcgis.import("@arcgis/core/graphic/DimensionFeatureGraphicOrigin.js");- Inheritance
- DimensionFeatureGraphicOrigin→
GraphicOrigin
- Since
- ArcGIS Maps SDK for JavaScript 5.1
Provides information about the DimensionFeatureLayer from which a graphic originates. The origin information may be available when a graphic is returned from methods such as hitTest() or queryFeatures().
- Example
- // get a point from view's click eventview.on("click", async (event) => {// Search for all features only on included layer at the clicked locationconst response = await view.hitTest(event, {include: layer});// if graphics are returned from layer, get the layer id from graphic originif (response.results.length > 0) {const originId = response.results[0].graphic?.origin?.layer?.id;}});
Constructors
Constructor
Constructor
Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
| layer | The DimensionFeatureLayer of the origin. | |
Properties
| Property | Type | Class |
|---|---|---|
| readonly | | |
| readonly | DimensionFeatureLayer["type"] | |
type
readonly Property
- Type
- DimensionFeatureLayer["type"]
Indicates the type of layer the graphic originated from.
- Default value
- "dimension-feature"