Skip to content
import CatalogGraphicOrigin from "@arcgis/core/graphic/CatalogGraphicOrigin.js";
Inheritance:
CatalogGraphicOriginGraphicOrigin
Since
ArcGIS Maps SDK for JavaScript 5.0

Provides information about the CatalogFootprintLayer from which a graphic originates. The origin information may be available when a graphic is returned from methods such as hitTest() or queryFeatures().

See also
Example
// get a point from view's click event
view.on("click", async (event) => {
// Search for all features only on included layer at the clicked location
const response = await view.hitTest(event, {include: layer});
// if graphics are returned from layer, get the layer id from graphic origin
if (response.results.length > 0) {
const originId = response.results[0].graphic?.origin?.layer?.id;
}
});

Constructors

Constructor

Constructor
Parameters
ParameterTypeDescriptionRequired
layer

The layer of the origin.

Properties

PropertyTypeClass
layer
readonly
type
readonly
CatalogLayer["type"]

layer

readonly Property
Type
CatalogFootprintLayer

A layer from which a graphic originates.

type

readonly Property
Type
CatalogLayer["type"]

Indicates the type of layer the graphic originated from.

Default value
"catalog"