[android] Fixed lat/lon formatting

This commit is contained in:
Александр Зацепин 2017-08-04 18:12:17 +03:00 committed by Roman Kuznetsov
parent 94eb773841
commit 17e641e6bc

View file

@ -947,7 +947,7 @@ public class RoutingController implements TaxiManager.TaxiListener
}
else
{
title = String.format(Locale.US, "%1$s, %2$s", point.getLat(), point.getLon());
title = Framework.nativeFormatLatLon(point.getLat(), point.getLon(), false /* useDmsFormat */);
}
}
return new Pair<>(title, subtitle);