forked from organicmaps/organicmaps
[android] Fixed lat/lon formatting
This commit is contained in:
parent
94eb773841
commit
17e641e6bc
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue