use of com.mapbox.services.android.navigation.v5.routeprogress.RouteProgress in project mapbox-navigation-android by mapbox.
the class InstructionListAdapter method updateSteps.
public void updateSteps(Context context, RouteProgress routeProgress, Locale locale, @NavigationUnitType.UnitType int unitType) {
if (distanceUtils == null || !this.locale.equals(locale) || this.unitType != unitType) {
distanceUtils = new DistanceUtils(context, locale, unitType);
this.locale = locale;
this.unitType = unitType;
}
addLegSteps(routeProgress);
updateStepList(routeProgress);
}
Aggregations