/** * Provides a utility function to determine whether a graphic's origin is a [ImageryGraphicOrigin](https://developers.arcgis.com/javascript/latest/references/core/graphic/ImageryGraphicOrigin/). * * @since 5.0 * @example * // Use hitTest() to get a graphic, then check whether it originated from a ImageryLayer. * view.hitTest(screenPoint).then((response) => { * const graphic = response.results[0]?.graphic; * if (!graphic) { * return; * } * if (isImageryGraphicOrigin(graphic.origin)) { * // hitTest returned a graphic from a ImageryLayer. * // Use this info for your processing logic. * } else { * console.log("graphic's origin is NOT a ImageryLayer"); * } * }); */ import type GraphicOrigin from "./GraphicOrigin.js"; import type ImageryGraphicOrigin from "./ImageryGraphicOrigin.js"; /** * Utility function that determines whether a graphic’s origin is a [ImageryGraphicOrigin](https://developers.arcgis.com/javascript/latest/references/core/graphic/ImageryGraphicOrigin/). * * @param origin - The graphic origin to check. * @returns Returns `true` if the graphic origin is of type [ImageryGraphicOrigin](https://developers.arcgis.com/javascript/latest/references/core/graphic/ImageryGraphicOrigin/), `false` otherwise. */ export function isImageryGraphicOrigin(origin: GraphicOrigin | null | undefined): origin is ImageryGraphicOrigin;