Victor Shcherb 2020-06-08 17:21:09 +02:00
parent 1d04084297
commit 0fd3dedceb

View file

@ -91,7 +91,7 @@ public class RoutePlannerFrontEnd {
} }
if (road != null) { if (road != null) {
if(!transportStop) { if(!transportStop) {
float prio = ctx.getRouter().defineSpeedPriority(road.road); float prio = Math.max(ctx.getRouter().defineSpeedPriority(road.road), 0.3f);
if (prio > 0) { if (prio > 0) {
road.distSquare = (road.distSquare + GPS_POSSIBLE_ERROR * GPS_POSSIBLE_ERROR) road.distSquare = (road.distSquare + GPS_POSSIBLE_ERROR * GPS_POSSIBLE_ERROR)
/ (prio * prio); / (prio * prio);