MapWidget.cc 21.6 KB
Newer Older
pixhawk's avatar
pixhawk committed
1 2
/*=====================================================================

lm's avatar
lm committed
3
QGroundControl Open Source Ground Control Station
pixhawk's avatar
pixhawk committed
4

lm's avatar
lm committed
5
(c) 2009, 2010 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
pixhawk's avatar
pixhawk committed
6

lm's avatar
lm committed
7
This file is part of the QGROUNDCONTROL project
pixhawk's avatar
pixhawk committed
8

lm's avatar
lm committed
9
    QGROUNDCONTROL is free software: you can redistribute it and/or modify
pixhawk's avatar
pixhawk committed
10 11 12 13
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

lm's avatar
lm committed
14
    QGROUNDCONTROL is distributed in the hope that it will be useful,
pixhawk's avatar
pixhawk committed
15 16 17 18 19
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
lm's avatar
lm committed
20
    along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
pixhawk's avatar
pixhawk committed
21 22 23 24 25

======================================================================*/

/**
 * @file
lm's avatar
lm committed
26
 *   @brief Implementation of MapWidget
pixhawk's avatar
pixhawk committed
27 28
 *
 *   @author Lorenz Meier <mavteam@student.ethz.ch>
lm's avatar
lm committed
29
 *   @author Mariano Lizarraga
pixhawk's avatar
pixhawk committed
30 31 32
 *
 */

lm's avatar
lm committed
33 34 35
#include <QComboBox>
#include <QGridLayout>

pixhawk's avatar
pixhawk committed
36 37
#include "MapWidget.h"
#include "ui_MapWidget.h"
lm's avatar
lm committed
38 39
#include "UASInterface.h"
#include "UASManager.h"
40 41
#include "MAV2DIcon.h"
#include "Waypoint2DIcon.h"
pixhawk's avatar
pixhawk committed
42

pixhawk's avatar
pixhawk committed
43 44
#include "MG.h"

pixhawk's avatar
pixhawk committed
45 46 47
MapWidget::MapWidget(QWidget *parent) :
        QWidget(parent),
        zoomLevel(0),
48 49
        uasIcons(),
        uasTrails(),
50
        mav(NULL),
pixhawk's avatar
pixhawk committed
51 52 53
        m_ui(new Ui::MapWidget)
{
    m_ui->setupUi(this);
54

55 56
    waypointIsDrag = false;

pixhawk's avatar
pixhawk committed
57 58 59 60
    // Accept focus by clicking or keyboard
    this->setFocusPolicy(Qt::StrongFocus);

    // create MapControl
61
    mc = new qmapcontrol::MapControl(QSize(320, 240));
pixhawk's avatar
pixhawk committed
62
    mc->showScale(true);
63
    mc->showCoord(true);
pixhawk's avatar
pixhawk committed
64
    mc->enablePersistentCache();
65
    mc->setMouseTracking(true); // required to update the mouse position for diplay and capture
pixhawk's avatar
pixhawk committed
66 67

    // create MapAdapter to get maps from
lm's avatar
lm committed
68
    //TileMapAdapter* osmAdapter = new TileMapAdapter("tile.openstreetmap.org", "/%1/%2/%3.png", 256, 0, 17);
pixhawk's avatar
pixhawk committed
69

70
    qmapcontrol::MapAdapter* mapadapter_overlay = new qmapcontrol::YahooMapAdapter("us.maps3.yimg.com", "/aerial.maps.yimg.com/png?v=2.2&t=h&s=256&x=%2&y=%3&z=%1");
lm's avatar
lm committed
71 72

    // MAP BACKGROUND
73 74
    mapadapter = new qmapcontrol::GoogleSatMapAdapter();
    l = new qmapcontrol::MapLayer("Google Satellite", mapadapter);
lm's avatar
lm committed
75 76 77
    mc->addLayer(l);

    // STREET OVERLAY
78
    overlay = new qmapcontrol::MapLayer("Overlay", mapadapter_overlay);
lm's avatar
lm committed
79 80
    overlay->setVisible(false);
    mc->addLayer(overlay);
pixhawk's avatar
pixhawk committed
81

lm's avatar
lm committed
82 83
    // WAYPOINT LAYER
    // create a layer with the mapadapter and type GeometryLayer (for waypoints)
84
    geomLayer = new qmapcontrol::GeometryLayer("Waypoints", mapadapter);
85
    mc->addLayer(geomLayer);
lm's avatar
lm committed
86 87 88 89 90 91 92 93 94

//
//    Layer* gsatLayer = new Layer("Google Satellite", gsat, Layer::MapLayer);
//    mc->addLayer(gsatLayer);

    // SET INITIAL POSITION AND ZOOM
    // Set default zoom level
    mc->setZoom(16);
    // Zurich, ETH
95 96 97 98
    //mc->setView(QPointF(8.548056,47.376389));

    // Veracruz Mexico, ETH
    mc->setView(QPointF(-96.105208,19.138955));
lm's avatar
lm committed
99 100 101 102

    // Add controls to select map provider
    /////////////////////////////////////////////////
    QActionGroup* mapproviderGroup = new QActionGroup(this);
103 104 105 106 107
    osmAction = new QAction(QIcon(":/images/mapproviders/openstreetmap.png"), tr("OpenStreetMap"), mapproviderGroup);
    yahooActionMap = new QAction(QIcon(":/images/mapproviders/yahoo.png"), tr("Yahoo: Map"), mapproviderGroup);
    yahooActionSatellite = new QAction(QIcon(":/images/mapproviders/yahoo.png"), tr("Yahoo: Satellite"), mapproviderGroup);
    googleActionMap = new QAction(QIcon(":/images/mapproviders/google.png"), tr("Google: Map"), mapproviderGroup);
    googleSatAction = new QAction(QIcon(":/images/mapproviders/google.png"), tr("Google: Sat"), mapproviderGroup);
lm's avatar
lm committed
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
    osmAction->setCheckable(true);
    yahooActionMap->setCheckable(true);
    yahooActionSatellite->setCheckable(true);
    googleActionMap->setCheckable(true);
    googleSatAction->setCheckable(true);
    googleSatAction->setChecked(true);
    connect(mapproviderGroup, SIGNAL(triggered(QAction*)),
            this, SLOT(mapproviderSelected(QAction*)));

    // Overlay seems currently broken
//    yahooActionOverlay = new QAction(tr("Yahoo: street overlay"), this);
//    yahooActionOverlay->setCheckable(true);
//    yahooActionOverlay->setChecked(overlay->isVisible());
//    connect(yahooActionOverlay, SIGNAL(toggled(bool)),
//            overlay, SLOT(setVisible(bool)));

//    mapproviderGroup->addAction(googleSatAction);
//    mapproviderGroup->addAction(osmAction);
//    mapproviderGroup->addAction(yahooActionOverlay);
//    mapproviderGroup->addAction(googleActionMap);
//    mapproviderGroup->addAction(yahooActionMap);
//    mapproviderGroup->addAction(yahooActionSatellite);

    // Create map provider selection menu
    mapMenu = new QMenu(this);
    mapMenu->addActions(mapproviderGroup->actions());
    mapMenu->addSeparator();
//    mapMenu->addAction(yahooActionOverlay);

    mapButton = new QPushButton(this);
    mapButton->setText("Map Source");
    mapButton->setMenu(mapMenu);
pixhawk's avatar
pixhawk committed
140 141

    // display the MapControl in the application
lm's avatar
lm committed
142
    QGridLayout* layout = new QGridLayout(this);
pixhawk's avatar
pixhawk committed
143
    layout->setMargin(0);
lm's avatar
lm committed
144 145 146 147 148 149 150 151
    layout->setSpacing(2);
    layout->addWidget(mc, 0, 0, 1, 2);
    layout->addWidget(mapButton, 1, 0);
    layout->addItem(new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Expanding), 1, 1);
    layout->setRowStretch(0, 100);
    layout->setRowStretch(1, 1);
    layout->setColumnStretch(0, 1);
    layout->setColumnStretch(1, 50);
pixhawk's avatar
pixhawk committed
152 153
    setLayout(layout);

154
    // create buttons to control the map (zoom, GPS tracking and WP capture)
pixhawk's avatar
pixhawk committed
155 156
    QPushButton* zoomin = new QPushButton(QIcon(":/images/actions/list-add.svg"), "", this);
    QPushButton* zoomout = new QPushButton(QIcon(":/images/actions/list-remove.svg"), "", this);
157
    createPath = new QPushButton(QIcon(":/images/actions/go-bottom.svg"), "", this);
pixhawk's avatar
pixhawk committed
158
    followgps = new QPushButton(QIcon(":/images/actions/system-lock-screen.svg"), "", this);
159

pixhawk's avatar
pixhawk committed
160 161
    zoomin->setMaximumWidth(50);
    zoomout->setMaximumWidth(50);
162
    createPath->setMaximumWidth(50);
pixhawk's avatar
pixhawk committed
163 164
    followgps->setMaximumWidth(50);

165 166 167 168 169 170 171
    // Set checkable buttons
    // TODO: Currently checked buttons are are very difficult to distinguish when checked.
    //       create a style and the slots to change the background so it is easier to distinguish
    followgps->setCheckable(true);
    createPath->setCheckable(true);

    // add buttons to control the map (zoom, GPS tracking and WP capture)
lm's avatar
lm committed
172 173 174 175 176 177 178 179 180 181 182 183
    QGridLayout* innerlayout = new QGridLayout(mc);
    innerlayout->setMargin(5);
    innerlayout->setSpacing(5);
    innerlayout->addWidget(zoomin, 0, 0);
    innerlayout->addWidget(zoomout, 1, 0);
    innerlayout->addWidget(followgps, 2, 0);
    innerlayout->addWidget(createPath, 3, 0);
    // Add spacers to compress buttons on the top left
    innerlayout->addItem(new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Expanding), 4, 0);
    innerlayout->addItem(new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Expanding), 0, 1, 0, 5);
    innerlayout->setRowStretch(0, 1);
    innerlayout->setRowStretch(1, 100);
pixhawk's avatar
pixhawk committed
184 185
    mc->setLayout(innerlayout);

186 187

    // Connect the required signals-slots
188 189 190 191 192 193
    connect(zoomin, SIGNAL(clicked(bool)),
            mc, SLOT(zoomIn()));

    connect(zoomout, SIGNAL(clicked(bool)),
            mc, SLOT(zoomOut()));

194 195
    connect(UASManager::instance(), SIGNAL(UASCreated(UASInterface*)),
            this, SLOT(addUAS(UASInterface*)));
196
    connect(UASManager::instance(), SIGNAL(activeUASSet(UASInterface*)), this, SLOT(activeUASSet(UASInterface*)));
197 198 199 200 201

    connect(mc, SIGNAL(mouseEventCoordinate(const QMouseEvent*, const QPointF)),
            this, SLOT(captureMapClick(const QMouseEvent*, const QPointF)));

    connect(createPath, SIGNAL(clicked(bool)),
202
            this, SLOT(createPathButtonClicked(bool)));
203

204

205 206 207
    connect(geomLayer, SIGNAL(geometryClicked(Geometry*,QPoint)),
            this, SLOT(captureGeometryClick(Geometry*, QPoint)));

208 209 210 211 212
    connect(geomLayer, SIGNAL(geometryDragged(Geometry*, QPointF)),
            this, SLOT(captureGeometryDrag(Geometry*, QPointF)));

    connect(geomLayer, SIGNAL(geometryEndDrag(Geometry*, QPointF)),
            this, SLOT(captureGeometryEndDrag(Geometry*, QPointF)));
213 214 215 216 217

    // Configure the WP Path's pen
    pointPen = new QPen(QColor(0, 255,0));
    pointPen->setWidth(3);

218
    path = new qmapcontrol::LineString (wps, "UAV Path", pointPen);
lm's avatar
lm committed
219
    mc->layer("Waypoints")->addGeometry(path);
220 221

    this->setVisible(false);
lm's avatar
lm committed
222 223
}

224

lm's avatar
lm committed
225 226 227 228 229 230 231 232
void MapWidget::mapproviderSelected(QAction* action)
{
    //delete mapadapter;
    mapButton->setText(action->text());
    if (action == osmAction)
    {
        int zoom = mapadapter->adaptedZoom();
        mc->setZoom(0);
233

234
        mapadapter = new qmapcontrol::OSMMapAdapter();
lm's avatar
lm committed
235 236
        l->setMapAdapter(mapadapter);
        geomLayer->setMapAdapter(mapadapter);
237

lm's avatar
lm committed
238 239
        mc->updateRequestNew();
        mc->setZoom(zoom);
240
//        yahooActionOverlay->setEnabled(false);
lm's avatar
lm committed
241
        overlay->setVisible(false);
242
//        yahooActionOverlay->setChecked(false);
243

lm's avatar
lm committed
244 245 246 247 248 249
    }
    else if (action == yahooActionMap)
    {
        int zoom = mapadapter->adaptedZoom();
        mc->setZoom(0);

250
        mapadapter = new qmapcontrol::YahooMapAdapter();
lm's avatar
lm committed
251 252 253 254 255
        l->setMapAdapter(mapadapter);
        geomLayer->setMapAdapter(mapadapter);

        mc->updateRequestNew();
        mc->setZoom(zoom);
256
//        yahooActionOverlay->setEnabled(false);
lm's avatar
lm committed
257
        overlay->setVisible(false);
258
//        yahooActionOverlay->setChecked(false);
lm's avatar
lm committed
259 260 261 262 263 264
    }
    else if (action == yahooActionSatellite)
    {
        int zoom = mapadapter->adaptedZoom();
        QPointF a = mc->currentCoordinate();
        mc->setZoom(0);
265

266
        mapadapter = new qmapcontrol::YahooMapAdapter("us.maps3.yimg.com", "/aerial.maps.yimg.com/png?v=1.7&t=a&s=256&x=%2&y=%3&z=%1");
lm's avatar
lm committed
267
        l->setMapAdapter(mapadapter);
pixhawk's avatar
pixhawk committed
268

lm's avatar
lm committed
269 270
        mc->updateRequestNew();
        mc->setZoom(zoom);
271
//        yahooActionOverlay->setEnabled(true);
lm's avatar
lm committed
272 273 274 275 276
    }
    else if (action == googleActionMap)
    {
        int zoom = mapadapter->adaptedZoom();
        mc->setZoom(0);
277
        mapadapter = new qmapcontrol::GoogleMapAdapter();
lm's avatar
lm committed
278 279 280 281 282
        l->setMapAdapter(mapadapter);
        geomLayer->setMapAdapter(mapadapter);

        mc->updateRequestNew();
        mc->setZoom(zoom);
283
//        yahooActionOverlay->setEnabled(false);
lm's avatar
lm committed
284
        overlay->setVisible(false);
285
//        yahooActionOverlay->setChecked(false);
lm's avatar
lm committed
286 287 288 289 290
    }
    else if (action == googleSatAction)
    {
        int zoom = mapadapter->adaptedZoom();
        mc->setZoom(0);
291
        mapadapter = new qmapcontrol::GoogleSatMapAdapter();
lm's avatar
lm committed
292 293 294 295 296
        l->setMapAdapter(mapadapter);
        geomLayer->setMapAdapter(mapadapter); 

        mc->updateRequestNew();
        mc->setZoom(zoom);
297
//        yahooActionOverlay->setEnabled(false);
lm's avatar
lm committed
298
        overlay->setVisible(false);
299
//        yahooActionOverlay->setChecked(false);
lm's avatar
lm committed
300 301 302 303 304
    }
    else
    {
        mapButton->setText("Select..");
    }
305
}
lm's avatar
lm committed
306

lm's avatar
lm committed
307

308
void MapWidget::createPathButtonClicked(bool checked)
lm's avatar
lm committed
309
{
310 311
  Q_UNUSED(checked);

312 313


lm's avatar
lm committed
314 315 316 317
    if (createPath->isChecked())
    {
        // change the cursor shape
        this->setCursor(Qt::PointingHandCursor);
318
        mc->setMouseMode(qmapcontrol::MapControl::None);
lm's avatar
lm committed
319

320

321
        // emit signal start to create a Waypoint global
322
        emit createGlobalWP(true, mc->currentCoordinate());
323

324 325 326 327 328 329 330
//        // Clear the previous WP track
//        // TODO: Move this to an actual clear track button and add a warning dialog
//        mc->layer("Waypoints")->clearGeometries();
//        wps.clear();
//        path->setPoints(wps);
//        mc->layer("Waypoints")->addGeometry(path);
//        wpIndex.clear();
331 332


lm's avatar
lm committed
333
    } else {
334

lm's avatar
lm committed
335
        this->setCursor(Qt::ArrowCursor);
336
        mc->setMouseMode(qmapcontrol::MapControl::Panning);
337 338


lm's avatar
lm committed
339
    }
340

341
}
342

343 344 345 346 347 348 349
/**
 * Captures a click on the map and if in create WP path mode, it adds the WP on MouseButtonRelease
 *
 * @param event The mouse event
 * @param coordinate The coordinate in which it occured the mouse event
 * @note  This slot is connected to the mouseEventCoordinate of the QMapControl object
 */
350

351 352
void MapWidget::captureMapClick(const QMouseEvent* event, const QPointF coordinate)
{
353

354 355
  qDebug() << mc->mouseMode();

356 357
  if (QEvent::MouseButtonRelease == event->type() && createPath->isChecked())
    {
358 359 360
    // Create waypoint name
    QString str;

361
    str = QString("%1").arg(path->numberOfPoints());
362 363

    // create the WP and set everything in the LineString to display the path
364 365 366 367 368 369 370 371 372 373
    Waypoint2DIcon* tempCirclePoint;

    if (mav)
    {
        tempCirclePoint = new Waypoint2DIcon(coordinate.x(), coordinate.y(), 20, str, qmapcontrol::Point::Middle, new QPen(mav->getColor()));
    }
    else
    {
        tempCirclePoint = new Waypoint2DIcon(coordinate.x(), coordinate.y(), 20, str, qmapcontrol::Point::Middle);
    }
374 375
    mc->layer("Waypoints")->addGeometry(tempCirclePoint);

376
    qmapcontrol::Point* tempPoint = new qmapcontrol::Point(coordinate.x(), coordinate.y(),str);
377 378 379 380
    wps.append(tempPoint);
    path->addPoint(tempPoint);

    wpIndex.insert(str,tempPoint);
381

382
    // Refresh the screen
383
    mc->updateRequestNew();
384 385 386

    // emit signal mouse was clicked
    emit captureMapCoordinateClick(coordinate);
387

388
  }
pixhawk's avatar
pixhawk committed
389 390
}

391 392 393 394 395 396 397 398
void MapWidget::createWaypointGraphAtMap(const QPointF coordinate)
{
    // Create waypoint name
    QString str;

    str = QString("%1").arg(path->numberOfPoints());

    // create the WP and set everything in the LineString to display the path
399 400 401 402 403 404 405 406 407 408 409
    //CirclePoint* tempCirclePoint = new CirclePoint(coordinate.x(), coordinate.y(), 10, str);
    Waypoint2DIcon* tempCirclePoint;

    if (mav)
    {
        tempCirclePoint = new Waypoint2DIcon(coordinate.x(), coordinate.y(), 20, str, qmapcontrol::Point::Middle, new QPen(mav->getColor()));
    }
    else
    {
        tempCirclePoint = new Waypoint2DIcon(coordinate.x(), coordinate.y(), 20, str, qmapcontrol::Point::Middle);
    }
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
    mc->layer("Waypoints")->addGeometry(tempCirclePoint);

    Point* tempPoint = new Point(coordinate.x(), coordinate.y(),str);
    wps.append(tempPoint);
    path->addPoint(tempPoint);

    wpIndex.insert(str,tempPoint);

    // Refresh the screen
    mc->updateRequestNew();

////    // emit signal mouse was clicked
//    emit captureMapCoordinateClick(coordinate);
}

425

426 427
void MapWidget::captureGeometryClick(Geometry* geom, QPoint point)
{
428 429 430 431 432
  Q_UNUSED(geom);
  Q_UNUSED(point);

  mc->setMouseMode(qmapcontrol::MapControl::None);

433 434
}

435 436
void MapWidget::captureGeometryDrag(Geometry* geom, QPointF coordinate)
{
437

438

439 440
  waypointIsDrag = true;

441 442 443 444
  // Refresh the screen
  mc->updateRequestNew();

  int temp = 0;
445
  qmapcontrol::Point* point2Find;
446 447
  point2Find = wpIndex[geom->name()];

lm's avatar
lm committed
448 449 450
  if (point2Find)
  {
      point2Find->setCoordinate(coordinate);
451

452
      point2Find = dynamic_cast <qmapcontrol::Point*> (geom);
lm's avatar
lm committed
453 454 455
      if (point2Find)
      {
          point2Find->setCoordinate(coordinate);
456

lm's avatar
lm committed
457 458 459 460 461 462
          // qDebug() << geom->name();
          temp = geom->get_myIndex();
          //qDebug() << temp;
          emit sendGeometryEndDrag(coordinate,temp);
      }
  }
463

464 465
}

466
void MapWidget::captureGeometryEndDrag(Geometry* geom, QPointF coordinate)
467 468
{

469 470 471 472 473
  // TODO: Investigate why when creating the waypoint path this slot is being called

  // Only change the mouse mode back to panning when not creating a WP path
  if (!createPath->isChecked()){
    waypointIsDrag = false;
474
    mc->setMouseMode(qmapcontrol::MapControl::Panning);
475
  }
476

477 478
}

pixhawk's avatar
pixhawk committed
479 480 481 482
MapWidget::~MapWidget()
{
    delete m_ui;
}
lm's avatar
lm committed
483 484 485 486 487 488
/**
 *
 * @param uas the UAS/MAV to monitor/display with the HUD
 */
void MapWidget::addUAS(UASInterface* uas)
{
489
    connect(uas, SIGNAL(globalPositionChanged(UASInterface*,double,double,double,quint64)), this, SLOT(updateGlobalPosition(UASInterface*,double,double,double,quint64)));
lm's avatar
lm committed
490 491
}

492 493 494 495 496 497 498 499 500
void MapWidget::activeUASSet(UASInterface* uas)
{
    if (uas)
    {
        mav = uas;
        path->setPen(new QPen(mav->getColor()));
    }
}

lm's avatar
lm committed
501 502 503 504 505 506 507 508 509
/**
 * Updates the global position of one MAV and append the last movement to the trail
 *
 * @param uas The unmanned air system
 * @param lat Latitude in WGS84 ellipsoid
 * @param lon Longitutde in WGS84 ellipsoid
 * @param alt Altitude over mean sea level
 * @param usec Timestamp of the position message in milliseconds FIXME will move to microseconds
 */
lm's avatar
lm committed
510 511 512
void MapWidget::updateGlobalPosition(UASInterface* uas, double lat, double lon, double alt, quint64 usec)
{
    Q_UNUSED(usec);
513
    Q_UNUSED(alt); // FIXME Use altitude
pixhawk's avatar
pixhawk committed
514
    quint64 currTime = MG::TIME::getGroundTimeNow();
515
    if (currTime - lastUpdate > 90)
pixhawk's avatar
pixhawk committed
516 517
    {
        lastUpdate = currTime;
518 519 520 521 522 523 524 525 526 527 528 529 530 531
        // create a LineString
        //QList<Point*> points;
        // Points with a circle
        // A QPen can be used to customize the
        //pointpen->setWidth(3);
        //points.append(new CirclePoint(lat, lon, 10, uas->getUASName(), Point::Middle, pointpen));

        if (!uasIcons.contains(uas->getUASID()))
        {
            // Get the UAS color
            QColor uasColor = uas->getColor();

            // Icon
            QPen* pointpen = new QPen(uasColor);
532
            MAV2DIcon* p = new MAV2DIcon(lat, lon, 20, uas->getUASName(), qmapcontrol::Point::Middle, pointpen);
533
            uasIcons.insert(uas->getUASID(), p);
lm's avatar
lm committed
534
            geomLayer->addGeometry(p);
535 536 537 538

            // Line
            // A QPen also can use transparency

539 540
            QList<qmapcontrol::Point*> points;
            points.append(new qmapcontrol::Point(lat, lon, QString("lat: %1 lon: %2").arg(lat, lon)));
541 542 543
            QPen* linepen = new QPen(uasColor.darker());
            linepen->setWidth(2);
            // Add the Points and the QPen to a LineString
544
            qmapcontrol::LineString* ls = new qmapcontrol::LineString(points, uas->getUASName(), linepen);
545 546 547
            uasTrails.insert(uas->getUASID(), ls);

            // Add the LineString to the layer
lm's avatar
lm committed
548
            geomLayer->addGeometry(ls);
549 550 551
        }
        else
        {
552 553 554 555 556 557
            MAV2DIcon* p = dynamic_cast<MAV2DIcon*>(uasIcons.value(uas->getUASID()));
            if (p)
            {
                p->setCoordinate(QPointF(lat, lon));
                p->setYaw(uas->getYaw());
            }
558
            // Extend trail
559
            uasTrails.value(uas->getUASID())->addPoint(new qmapcontrol::Point(lat, lon, QString("lat: %1 lon: %2").arg(lat, lon)));
560 561 562 563 564 565 566 567 568
        }

        //    points.append(new CirclePoint(8.275145, 50.016992, 15, "Wiesbaden-Mainz-Kastel, Johannes-Goßner-Straße", Point::Middle, pointpen));
        //    points.append(new CirclePoint(8.270476, 50.021426, 15, "Wiesbaden-Mainz-Kastel, Ruthof", Point::Middle, pointpen));
        //    // "Blind" Points
        //    points.append(new Point(8.266445, 50.025913, "Wiesbaden-Mainz-Kastel, Mudra Kaserne"));
        //    points.append(new Point(8.260378, 50.030345, "Wiesbaden-Mainz-Amoneburg, Dyckerhoffstraße"));

        // Connect click events of the layer to this object
569
        // connect(osmLayer, SIGNAL(geometryClicked(Geometry*, QPoint)),
570 571 572 573 574 575 576 577
        //                  this, SLOT(geometryClicked(Geometry*, QPoint)));

        // Sets the view to the interesting area
        //QList<QPointF> view;
        //view.append(QPointF(8.24764, 50.0319));
        //view.append(QPointF(8.28412, 49.9998));
        // mc->setView(view);
        updatePosition(0, lat, lon);
pixhawk's avatar
pixhawk committed
578 579
    }
}
pixhawk's avatar
pixhawk committed
580

lm's avatar
lm committed
581 582 583
/**
 * Center the view on this position
 */
lm's avatar
lm committed
584
void MapWidget::updatePosition(float time, double lat, double lon)
pixhawk's avatar
pixhawk committed
585
{
lm's avatar
lm committed
586
    Q_UNUSED(time);
587
    //gpsposition->setText(QString::number(time) + " / " + QString::number(lat) + " / " + QString::number(lon));
pixhawk's avatar
pixhawk committed
588 589
    if (followgps->isChecked())
    {
lm's avatar
lm committed
590
        mc->setView(QPointF(lat, lon));
pixhawk's avatar
pixhawk committed
591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632
    }
}

void MapWidget::wheelEvent(QWheelEvent *event)
{
    int numDegrees = event->delta() / 8;
    int numSteps = numDegrees / 15;
    // Calculate new zoom level
    int newZoom = mc->currentZoom()+numSteps;
    // Set new zoom level, level is bounded by map control
    mc->setZoom(newZoom);
    // Detail zoom level is the number of steps zoomed in further
    // after the bounding has taken effect
    detailZoom = qAbs(qMin(0, mc->currentZoom()-newZoom));
}

void MapWidget::keyPressEvent(QKeyEvent *event)
{
    switch (event->key()) {
    case Qt::Key_Plus:
        mc->zoomIn();
        break;
    case Qt::Key_Minus:
        mc->zoomOut();
        break;
    case Qt::Key_Left:
        mc->scrollLeft(this->width()/scrollStep);
        break;
    case Qt::Key_Right:
        mc->scrollRight(this->width()/scrollStep);
        break;
    case Qt::Key_Down:
        mc->scrollDown(this->width()/scrollStep);
        break;
    case Qt::Key_Up:
        mc->scrollUp(this->width()/scrollStep);
        break;
    default:
        QWidget::keyPressEvent(event);
    }
}

633
void MapWidget::resizeEvent(QResizeEvent* event )
pixhawk's avatar
pixhawk committed
634
{
635 636
    Q_UNUSED(event);
    mc->resize(this->size());
pixhawk's avatar
pixhawk committed
637 638 639 640 641 642 643 644 645 646 647 648 649 650
}


void MapWidget::changeEvent(QEvent *e)
{
    QWidget::changeEvent(e);
    switch (e->type()) {
    case QEvent::LanguageChange:
        m_ui->retranslateUi(this);
        break;
    default:
        break;
    }
}
651 652 653 654 655 656 657 658 659 660
void MapWidget::clearPath()
{
    // Clear the previous WP track

    mc->layer("Waypoints")->clearGeometries();
    wps.clear();
    path->setPoints(wps);
    mc->layer("Waypoints")->addGeometry(path);
    wpIndex.clear();
    mc->updateRequestNew();
661

662

663 664 665 666 667
    if(createPath->isChecked())
    {
        createPath->click();
    }

668
}
669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693

void MapWidget::changeGlobalWaypointPositionBySpinBox(int index, float lat, float lon)
{
    if(!waypointIsDrag)
    {
        qDebug() <<"indice WP= "<<index <<"\n";

        QPointF coordinate;
        coordinate.setX(lon);
        coordinate.setY(lat);

        Point* point2Find;
        point2Find = wpIndex[QString::number(index)];
        point2Find->setCoordinate(coordinate);

        point2Find = dynamic_cast <Point*> (mc->layer("Waypoints")->get_Geometry(index));
        point2Find->setCoordinate(coordinate);

        // Refresh the screen
        mc->updateRequestNew();
   }


}