EFA: Trip optimization for least duration, least changes or least walking.

This commit is contained in:
Andreas Schildbach 2015-05-20 13:33:35 +02:00
parent 5cc1956f99
commit f4974bc8f2
19 changed files with 73 additions and 50 deletions

View file

@ -53,6 +53,6 @@ public class TripController
{
final Location fromLocation = new Location(fromType, fromId, null, from);
final Location toLocation = new Location(toType, toId, null, to);
return provider.queryTrips(fromLocation, null, toLocation, new Date(), true, Product.ALL, WalkSpeed.NORMAL, Accessibility.NEUTRAL, null);
return provider.queryTrips(fromLocation, null, toLocation, new Date(), true, Product.ALL, null, WalkSpeed.NORMAL, Accessibility.NEUTRAL, null);
}
}