Merge pull request #5248 from VladiMihaylenko/master

Added comma to place page coordinate.
This commit is contained in:
Arsentiy Milchakov 2017-01-20 18:00:42 +03:00 committed by GitHub
commit 85132f9035

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);
}