drawing center point as "lat, lon" instead of "lon, lat". closes #270

This commit is contained in:
rachytski 2011-05-27 23:55:59 +03:00 committed by Alex Zolotarev
parent 4d167d9393
commit 95cfc9234d

View file

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