makeRoutes abstract method

List<RoutePath> makeRoutes(
  1. LocationPoint from,
  2. List<LocationPoint> to
)

@brief Method is used to build a route between the starting point and several destination points @param from starting @see LocationPoint "LocationPoint". @param to destination list of @see LocationPoint "LocationPoint"s. @return vector of @see RoutePath "RoutePath"s from starting to destination point.

Dart code snippet: @snippet route_manager_example.dart dart_RouteManager_makeRoutes

Implementation

List<RoutePath> makeRoutes(LocationPoint from, List<LocationPoint> to);