totalDown property

double get totalDown

Get total terrain elevation down.

Returns

  • Total terrain elevation down

Throws

  • An exception if it fails

Implementation

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

  return resultString['result'];
}