totalUp property

double get totalUp

Total uphill elevation (meters) along the route.

Returns

  • Total ascent in meters.

Also see:

  • totalDown - Total downhill elevation along the route
  • getTotalDown - Total downhill elevation between start and end

Implementation

double get totalUp {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteTerrainProfile',
    'getTotalUp',
  );

  return resultString['result'];
}