import type OrientedImageryLayer from "../../layers/OrientedImageryLayer.js";
import type FeatureLikeLayerView from "./FeatureLikeLayerView.js";

/**
 * Represents the [LayerView](https://developers.arcgis.com/javascript/latest/references/core/views/layers/LayerView/) of a [OrientedImageryLayer](https://developers.arcgis.com/javascript/latest/references/core/layers/OrientedImageryLayer/)
 * after it has been added to a [Map](https://developers.arcgis.com/javascript/latest/references/core/Map/) in either a [MapView](https://developers.arcgis.com/javascript/latest/references/core/views/MapView/), [Map component](https://developers.arcgis.com/javascript/latest/references/map-components/components/arcgis-map/),
 * [SceneView](https://developers.arcgis.com/javascript/latest/references/core/views/SceneView/) or [Scene component](https://developers.arcgis.com/javascript/latest/references/map-components/components/arcgis-scene/).
 *
 * The OrientedImageryLayerView is responsible for rendering a [OrientedImageryLayer's](https://developers.arcgis.com/javascript/latest/references/core/layers/OrientedImageryLayer/)
 * features as [graphics](https://developers.arcgis.com/javascript/latest/references/core/Graphic/) in the [View](https://developers.arcgis.com/javascript/latest/references/core/views/View/). The [methods](https://developers.arcgis.com/javascript/latest/references/core/views/layers/OrientedImageryLayerView/#queryExtent)
 * in the OrientedImageryLayerView provide developers with the ability to query and highlight graphics in the view. See the
 * code snippets in the [methods](https://developers.arcgis.com/javascript/latest/references/core/views/layers/OrientedImageryLayerView/#queryExtent) below for examples of how to access client-side graphics from the
 * view.
 *
 * @since 4.0
 * @see [OrientedImageryLayer](https://developers.arcgis.com/javascript/latest/references/core/layers/OrientedImageryLayer/)
 */
export default abstract class OrientedImageryLayerView extends FeatureLikeLayerView {
  /** The layer being viewed. */
  get layer(): OrientedImageryLayer;
}