ElevationProfileLineView
esri/widgets/ElevationProfile/ElevationProfileLineView
Profile line which samples elevation directly from the SceneView.
All volumetric objects in a SceneView contribute to the resulting profile, including Ground, SceneLayer, IntegratedMeshLayer and FeatureLayers with volumetric 3D symbols (e.g. ObjectSymbol3DLayer, PathSymbol3DLayer). The input graphic itself is excluded when the profile is generated. When the Camera changes, the profile line will be updated to reflect what is currently visible in the view.
This profile line type is not supported in a MapView.
elevation-profile The purple building profile is the result of a profile line of type view.
- See also:
const elevationProfile = new ElevationProfile({
view: view,
profiles: [{
type: "view"
}]
});
Property Overview
Name | Type | Summary | Class | |
---|---|---|---|---|
Color | Color of the line on the chart and in the view. more details | more details | ElevationProfileLineView | |
String | The name of the class. more details | more details | Accessor | |
Array<(IntersectItem|Collection<IntersectItem>|Array<IntersectItem>|Ground)>|Collection<IntersectItem>|IntersectItem | Items which are to be excluded when querying elevation from view. more details | more details | ElevationProfileLineView | |
Point | Point being hovered in the chart, in the view's spatial reference. more details | more details | ElevationProfileLine | |
String | Unique identifier for the profile line. more details | more details | ElevationProfileLine | |
Array<(IntersectItem|Collection<IntersectItem>|Array<IntersectItem>|Ground)>|Collection<IntersectItem>|IntersectItem | Items which are to be hit when querying elevation from view. more details | more details | ElevationProfileLineView | |
Number | How far along the generation of this profile is. more details | more details | ElevationProfileLine | |
ElevationProfileSample[] | List of samples that make up the elevation profile. more details | more details | ElevationProfileLine | |
ElevationProfileStatistics | Statistics about the generated elevation profile, if available. more details | more details | ElevationProfileLine | |
String | Title of the line, to be displayed in the chart tooltip and in the chart legend. more details | more details | ElevationProfileLine | |
String | The line type. more details | more details | ElevationProfileLineView | |
Boolean | Whether the line should be computed and shown in the chart. more details | more details | ElevationProfileLine |
Property Details
Color of the line on the chart and in the view.
- Default Value:#bf4cf5
The name of the class. The declared class name is formatted as
esri.folder.className
.
Items which are to be excluded when querying elevation from view.
Point being hovered in the chart, in the view's spatial reference.
Unique identifier for the profile line.
Items which are to be hit when querying elevation from view.
How far along the generation of this profile is. 0 means nothing was loaded and 1 means loading is complete.
List of samples that make up the elevation profile. It can be passed to a graphing library in order to display the profile in 2D.
Statistics about the generated elevation profile, if available.
Title of the line, to be displayed in the chart tooltip and in the chart legend.
- type Stringreadonly
The line type.
For ElevationProfileLineView the type is always "view".
Whether the line should be computed and shown in the chart.
- Default Value:true