Removed comma for coordinates - users need to copy them without comma

This commit is contained in:
Alex Zolotarev 2014-07-20 13:07:53 +03:00 committed by Alex Zolotarev
parent 361b5453b1
commit d0ccae4bf0

View file

@ -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)