@arcgis/core
Version:
ArcGIS Maps SDK for JavaScript: A complete 2D and 3D mapping and data visualization API
18 lines (17 loc) • 1.49 kB
TypeScript
import type WFSLayer from "../../layers/WFSLayer.js";
import type FeatureLikeLayerView from "./FeatureLikeLayerView.js";
/**
* Represents the [LayerView](https://developers.arcgis.com/javascript/latest/references/core/views/layers/LayerView/) of a [WFSLayer](https://developers.arcgis.com/javascript/latest/references/core/layers/WFSLayer/)
* 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 WFSLayerView is responsible for rendering a [WFSLayer's](https://developers.arcgis.com/javascript/latest/references/core/layers/WFSLayer/)
* 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/).
*
* @since 4.11
* @see [WFSLayer](https://developers.arcgis.com/javascript/latest/references/core/layers/WFSLayer/)
*/
export default abstract class WFSLayerView extends FeatureLikeLayerView {
/** The layer being viewed. */
get layer(): WFSLayer;
}