Index: /trunk/GnssCenter/monitor/monitor.cpp
===================================================================
--- /trunk/GnssCenter/monitor/monitor.cpp	(revision 5493)
+++ /trunk/GnssCenter/monitor/monitor.cpp	(revision 5494)
@@ -251,5 +251,6 @@
         double latDeg = ell[0] * 180.0 / M_PI;
         double lonDeg = ell[1] * 180.0 / M_PI;
-        QString str = QString().sprintf("%d/%d", result->_nGPS, result->_nGLO);
+        QString str = QString(result->_name.c_str()) + 
+                      QString().sprintf("\n%d/%d", result->_nGPS, result->_nGLO);
         QColor color = result->_nGPS >= 4 ? Qt::black : Qt::red;
         t_worldPlot::t_point* point  = new t_worldPlot::t_point(color, str, latDeg, lonDeg);
Index: /trunk/GnssCenter/monitor/worldplot.cpp
===================================================================
--- /trunk/GnssCenter/monitor/worldplot.cpp	(revision 5493)
+++ /trunk/GnssCenter/monitor/worldplot.cpp	(revision 5494)
@@ -89,5 +89,5 @@
       marker->setLabelAlignment(Qt::AlignRight);
     }
-    QwtText text(point->_name.left(4));
+    QwtText text(point->_name);
     QFont   font = text.font();
     font.setPointSize(font.pointSize()*0.8);
