Fix route options
This commit is contained in:
parent
4eb39fc8da
commit
9a7107c2de
1 changed files with 5 additions and 5 deletions
|
@ -331,19 +331,19 @@ public class RouteProvider {
|
||||||
p = GeneralRouterProfile.CAR;
|
p = GeneralRouterProfile.CAR;
|
||||||
}
|
}
|
||||||
List<String> specs = new ArrayList<String>();
|
List<String> specs = new ArrayList<String>();
|
||||||
if (!app.getSettings().FAST_ROUTE_MODE.get()) {
|
if (!app.getSettings().FAST_ROUTE_MODE.getModeValue(params.mode)) {
|
||||||
specs.add(GeneralRouter.USE_SHORTEST_WAY);
|
specs.add(GeneralRouter.USE_SHORTEST_WAY);
|
||||||
}
|
}
|
||||||
if(app.getSettings().AVOID_FERRIES.get()){
|
if(app.getSettings().AVOID_FERRIES.getModeValue(params.mode)){
|
||||||
specs.add(GeneralRouter.AVOID_FERRIES);
|
specs.add(GeneralRouter.AVOID_FERRIES);
|
||||||
}
|
}
|
||||||
if(app.getSettings().AVOID_TOLL_ROADS.get()){
|
if(app.getSettings().AVOID_TOLL_ROADS.getModeValue(params.mode)){
|
||||||
specs.add(GeneralRouter.AVOID_TOLL);
|
specs.add(GeneralRouter.AVOID_TOLL);
|
||||||
}
|
}
|
||||||
if(app.getSettings().AVOID_MOTORWAY.get()){
|
if(app.getSettings().AVOID_MOTORWAY.getModeValue(params.mode)){
|
||||||
specs.add(GeneralRouter.AVOID_MOTORWAY);
|
specs.add(GeneralRouter.AVOID_MOTORWAY);
|
||||||
}
|
}
|
||||||
if(app.getSettings().AVOID_UNPAVED_ROADS.get()){
|
if(app.getSettings().AVOID_UNPAVED_ROADS.getModeValue(params.mode)){
|
||||||
specs.add(GeneralRouter.AVOID_UNPAVED);
|
specs.add(GeneralRouter.AVOID_UNPAVED);
|
||||||
}
|
}
|
||||||
String[] specialization = specs.toArray(new String[specs.size()]);
|
String[] specialization = specs.toArray(new String[specs.size()]);
|
||||||
|
|
Loading…
Reference in a new issue