oneToOnePedestrianCalculation static method

void oneToOnePedestrianCalculation(
  1. Coordinates start,
  2. Coordinates end
)

Perform a one-to-one pedestrian routing calculation.

Parameters:

  • IN start Coordinates of the start point.
  • IN end Coordinates of the end point.

Throws:

  • An exception if it fails.

Implementation

static void oneToOnePedestrianCalculation(
  Coordinates start,
  Coordinates end,
) {
  staticMethod(
    'Debug',
    'oneToOnePedestrianCalculation',
    args: <String, Coordinates>{'first': start, 'second': end},
  );
}