This commit is contained in:
parent
eb1a94c4f6
commit
4f108b05ae
2 changed files with 1 additions and 10 deletions
|
@ -64,7 +64,6 @@ public class NextTurnInfoWidget extends TextInfoWidget {
|
|||
public void setTurnImminent(int turnImminent, boolean deviatedFromRoute) {
|
||||
if(turnDrawable.turnImminent != turnImminent || turnDrawable.deviatedFromRoute != deviatedFromRoute) {
|
||||
turnDrawable.setTurnImminent(turnImminent, deviatedFromRoute);
|
||||
updateDistance();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -93,14 +92,6 @@ public class NextTurnInfoWidget extends TextInfoWidget {
|
|||
}
|
||||
}
|
||||
|
||||
public void setExitOut(int exit) {
|
||||
// TODO exit
|
||||
// if(turnDrawable.exitOut != exit) {
|
||||
// turnDrawable.e
|
||||
// }
|
||||
// TODO;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean updateInfo(DrawSettings drawSettings) {
|
||||
return false;
|
||||
|
@ -152,6 +143,7 @@ public class NextTurnInfoWidget extends TextInfoWidget {
|
|||
} else {
|
||||
paintRouteDirection.setColor(ctx.getResources().getColor(R.color.nav_arrow_distant));
|
||||
}
|
||||
invalidateSelf();
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -77,7 +77,6 @@ public class RouteInfoWidgetsFactory {
|
|||
NextDirectionInfo r = routingHelper.getNextRouteDirectionInfo(calc1, true);
|
||||
if (r != null && r.distanceTo > 0 && r.directionInfo != null) {
|
||||
turnType = r.directionInfo.getTurnType();
|
||||
setExitOut(turnType.getExitOut());
|
||||
nextTurnDistance = r.distanceTo;
|
||||
turnImminent = r.imminent;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue