Skip to content

Commit

Permalink
Add missing arrival ManeuverViewMap pair (#1007)
Browse files Browse the repository at this point in the history
  • Loading branch information
danesfeder authored Jun 11, 2018
1 parent c7b14c7 commit 85d5d46
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@ public void updateManeuverView(Canvas canvas, int primaryColor, int secondaryCol
ManeuversStyleKit.drawArrive(canvas, primaryColor, size);
}
});
put(new Pair<>(STEP_MANEUVER_TYPE_ARRIVE, STEP_MANEUVER_MODIFIER_STRAIGHT), new ManeuverViewUpdate() {
@Override
public void updateManeuverView(Canvas canvas, int primaryColor, int secondaryColor,
PointF size, float roundaboutAngle) {
ManeuversStyleKit.drawArrive(canvas, primaryColor, size);
}
});
put(new Pair<>(STEP_MANEUVER_TYPE_ARRIVE, STEP_MANEUVER_MODIFIER_RIGHT), new ManeuverViewUpdate() {
@Override
public void updateManeuverView(Canvas canvas, int primaryColor, int secondaryColor,
Expand Down

0 comments on commit 85d5d46

Please sign in to comment.