totalDown property

double get totalDown

Total downhill elevation (meters) along the route.

Returns

  • Total descent in meters.

Also see:

  • totalUp - Total uphill elevation along the route
  • getTotalUp - Total uphill elevation between start and end

Implementation

double get totalDown {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteTerrainProfile',
    'getTotalDown',
  );

  return resultString['result'];
}