ElevationProfileLineInput
esri/widgets/ElevationProfile/ElevationProfileLineInput
Profile line which samples elevation from the geometry of the input Graphic itself, typically used on input lines with z values. Currently this profile line type is supported only for graphics on layers with GraphicsLayer absolute-height
that don't have featureExpression
. No profile is created otherwise.
This profile line type is not supported in a MapView.
Profile generated from a line feature with z-values. The orange profile is created with a profile line of type input.
- See also:
const elevationProfile = new ElevationProfile({
view: view,
profiles: [{
type: "input",
color: "orange"
}, {
type: "ground",
color: "lime"
}]
});
Property Overview
Name | Type | Summary | Class | |
---|---|---|---|---|
Color | Color of the line on the chart and in the view. more details | more details | ElevationProfileLineInput | |
String | The name of the class. more details | more details | Accessor | |
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 | |
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 | ElevationProfileLineInput | |
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:#ff7f00
The name of the class. The declared class name is formatted as
esri.folder.className
.
Point being hovered in the chart, in the view's spatial reference.
Unique identifier for the profile line.
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 ElevationProfileLineInput the type is always "input".
Whether the line should be computed and shown in the chart.
- Default Value:true