Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorАлександр Зацепин <az@mapswithme.com>2017-08-04 18:12:17 +0300
committerRoman Kuznetsov <r.kuznetsow@gmail.com>2017-08-05 09:26:07 +0300
commit17e641e6bc8642f346344b08ed0a8a76e89f763f (patch)
treeed68d5cb19922da7a1b17014e0d90774c27587ae
parent94eb773841ed409c4aaeb9d95677aab904cd9452 (diff)
[android] Fixed lat/lon formattingbeta-953beta-952
-rw-r--r--android/src/com/mapswithme/maps/routing/RoutingController.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/src/com/mapswithme/maps/routing/RoutingController.java b/android/src/com/mapswithme/maps/routing/RoutingController.java
index 2f48342ba1..796e797fe5 100644
--- a/android/src/com/mapswithme/maps/routing/RoutingController.java
+++ b/android/src/com/mapswithme/maps/routing/RoutingController.java
@@ -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);