forked from organicmaps/organicmaps
drawing center point as "lat, lon" instead of "lon, lat". closes #270
This commit is contained in:
parent
4d167d9393
commit
95cfc9234d
1 changed files with 2 additions and 2 deletions
|
@ -200,8 +200,8 @@ void InformationDisplay::drawCenter(DrawerYG * drawer)
|
|||
{
|
||||
ostringstream out;
|
||||
|
||||
out << "(" << fixed << setprecision(4) << m_centerPt.x << ", "
|
||||
<< fixed << setprecision(4) << setw(8) << m_centerPt.y << ")";
|
||||
out << "(" << fixed << setprecision(4) << m_centerPt.y << ", "
|
||||
<< fixed << setprecision(4) << setw(8) << m_centerPt.x << ")";
|
||||
|
||||
m2::RectD const & textRect = drawer->screen()->textRect(
|
||||
yg::FontDesc::defaultFont,
|
||||
|
|
Loading…
Add table
Reference in a new issue