maxElevation property
double
get
maxElevation
Maximum elevation (meters) along the route.
Returns
- The maximum elevation in meters.
Also see:
- maxElevationDistance - Distance where maximum elevation occurs
- minElevation - Minimum elevation along the route
Implementation
double get maxElevation {
final OperationResult resultString = objectMethod(
pointerId,
'RouteTerrainProfile',
'getMaxElevation',
);
return resultString['result'];
}