Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2017-12-16 21:10:57 +01:00
commit d005740da7
2 changed files with 5 additions and 2 deletions

View file

@ -87,7 +87,8 @@ public class GeneralRouter implements VehicleRouter {
public enum GeneralRouterProfile { public enum GeneralRouterProfile {
CAR, CAR,
PEDESTRIAN, PEDESTRIAN,
BICYCLE BICYCLE,
BOAT
} }

View file

@ -728,6 +728,8 @@ public class RouteProvider {
p = GeneralRouterProfile.PEDESTRIAN; p = GeneralRouterProfile.PEDESTRIAN;
} else if(params.mode.isDerivedRoutingFrom(ApplicationMode.CAR)){ } else if(params.mode.isDerivedRoutingFrom(ApplicationMode.CAR)){
p = GeneralRouterProfile.CAR; p = GeneralRouterProfile.CAR;
} else if (params.mode.isDerivedRoutingFrom(ApplicationMode.BOAT)) {
p = GeneralRouterProfile.BOAT;
} else { } else {
return null; return null;
} }