maxElevation property

double get maxElevation

Maximum elevation (meters) along the route.

Returns

  • The maximum elevation in meters.

Also see:

Implementation

double get maxElevation {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteTerrainProfile',
    'getMaxElevation',
  );

  return resultString['result'];
}