Added comma to place page coordinate.

This commit is contained in:
VladiMihaylenko 2017-01-20 16:20:12 +03:00
parent 2098dcc504
commit c0ea15f864

View file

@ -132,7 +132,7 @@ string Info::FormatStars() const
string Info::GetFormattedCoordinate(bool isDMS) const
{
auto const & ll = GetLatLon();
return isDMS ? measurement_utils::FormatLatLon(ll.lat, ll.lon)
return isDMS ? measurement_utils::FormatLatLon(ll.lat, ll.lon, true)
: measurement_utils::FormatLatLonAsDMS(ll.lat, ll.lon, 2);
}