forked from organicmaps/organicmaps
prettier center point coordinates rendering.
This commit is contained in:
parent
cb1ea06228
commit
7559dd7e54
2 changed files with 7 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
|||
#include "../yg/skin.hpp"
|
||||
|
||||
#include "../std/fstream.hpp"
|
||||
#include "../std/iomanip.hpp"
|
||||
#include "../version/version.hpp"
|
||||
|
||||
#include "../base/string_utils.hpp"
|
||||
|
@ -305,7 +306,10 @@ void InformationDisplay::setCenter(m2::PointD const & pt)
|
|||
void InformationDisplay::drawCenter(DrawerYG * drawer)
|
||||
{
|
||||
ostringstream out;
|
||||
out << "(" << m_centerPt.x << ", " << m_centerPt.y << ")";
|
||||
|
||||
out << "(" << fixed << setprecision(4) << setw(8) << m_centerPt.x << ", "
|
||||
<< fixed << setprecision(4) << setw(8) << m_centerPt.y << ")";
|
||||
|
||||
m2::RectD const & textRect = drawer->screen()->textRect(
|
||||
out.str().c_str(),
|
||||
10,
|
||||
|
|
|
@ -9,6 +9,8 @@
|
|||
using std::setw;
|
||||
using std::setfill;
|
||||
using std::hex;
|
||||
using std::fixed;
|
||||
using std::setprecision;
|
||||
|
||||
#ifdef DEBUG_NEW
|
||||
#define new DEBUG_NEW
|
||||
|
|
Loading…
Add table
Reference in a new issue