manyToManyPedestrianCalculation static method

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

Perform a many-to-many pedestrian routing calculation.

The API user is advised to use RoutingService for routing calculations.

Parameters:

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

Also see:

  • RoutingService - Service managing routing calculations. Recommended for API users.

Implementation

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