maxElevationDistance property

int get maxElevationDistance

Distance from route start where the route reaches maximum elevation.

Returns

  • Distance in meters from the route start.

Also see:

Implementation

int get maxElevationDistance {
  final OperationResult resultString = objectMethod(
    pointerId,
    'RouteTerrainProfile',
    'getMaxElevationDistance',
  );

  return resultString['result'];
}