This commit is contained in:
Victor Shcherb 2016-08-04 01:40:19 +02:00
parent 26cd31f060
commit c72b279f38

View file

@ -247,7 +247,8 @@ public class RouteCalculationResult {
int roundAboutEnd = prevLocationSize ; int roundAboutEnd = prevLocationSize ;
// take next name for roundabout (not roundabout name) // take next name for roundabout (not roundabout name)
while (lind < list.size() - 1 && list.get(lind).getObject().roundabout()) { while (lind < list.size() - 1 && list.get(lind).getObject().roundabout()) {
roundAboutEnd++; roundAboutEnd += Math.abs(list.get(lind).getEndPointIndex()
- list.get(lind).getStartPointIndex());
lind++; lind++;
} }
// Consider roundabout end. // Consider roundabout end.