maxElevationDistance property
int
get
maxElevationDistance
Distance from route start where the route reaches maximum elevation.
Returns
- Distance in meters from the route start.
Also see:
- maxElevation - Maximum elevation along the route
- minElevationDistance - The distance where minimum elevation occurs
Implementation
int get maxElevationDistance {
final OperationResult resultString = objectMethod(
pointerId,
'RouteTerrainProfile',
'getMaxElevationDistance',
);
return resultString['result'];
}