forked from organicmaps/organicmaps
Removed comma for coordinates - users need to copy them without comma
This commit is contained in:
parent
361b5453b1
commit
d0ccae4bf0
1 changed files with 1 additions and 1 deletions
|
@ -116,7 +116,7 @@ string FormatMercatorAsDMS(m2::PointD const & mercator, int dac)
|
|||
// @TODO take into account decimal points or commas as separators in different locales
|
||||
string FormatLatLon(double lat, double lon, int dac)
|
||||
{
|
||||
return strings::to_string_dac(lat, dac) + ", " + strings::to_string_dac(lon, dac);
|
||||
return strings::to_string_dac(lat, dac) + " " + strings::to_string_dac(lon, dac);
|
||||
}
|
||||
|
||||
string FormatMercator(m2::PointD const & mercator, int dac)
|
||||
|
|
Loading…
Add table
Reference in a new issue