MapWidget.h 5.03 KB
Newer Older
pixhawk's avatar
pixhawk committed
1 2
/*=====================================================================

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

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

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

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.

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
20
    along with QGROUNDCONTROL. If not, see <http://www.gnu.org/licenses/>.
pixhawk's avatar
pixhawk committed
21 22 23 24 25

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

/**
 * @file
pixhawk's avatar
pixhawk committed
26
 *   @brief Definition 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 33 34 35 36
 *
 */

#ifndef MAPWIDGET_H
#define MAPWIDGET_H

#include <QtGui/QWidget>
pixhawk's avatar
pixhawk committed
37
#include <QMap>
pixhawk's avatar
pixhawk committed
38
#include "qmapcontrol.h"
lm's avatar
lm committed
39
#include "UASInterface.h"
40 41 42 43 44
#include "QPointF"

#include <qmath.h>


pixhawk's avatar
pixhawk committed
45

lm's avatar
lm committed
46 47
class QMenu;

pixhawk's avatar
pixhawk committed
48 49 50 51
namespace Ui {
    class MapWidget;
}

52 53
    using namespace qmapcontrol;

lm's avatar
lm committed
54 55 56 57 58 59
/**
 * @brief 2D Moving map
 *
 * This map displays street maps, aerial images and the MAV position,
 * waypoints and trails on top.
 */
pixhawk's avatar
pixhawk committed
60 61 62 63 64 65 66
class MapWidget : public QWidget {
    Q_OBJECT
public:
    MapWidget(QWidget *parent = 0);
    ~MapWidget();

public slots:
lm's avatar
lm committed
67
    void addUAS(UASInterface* uas);
68
    void activeUASSet(UASInterface* uas);
lm's avatar
lm committed
69 70
    void updateGlobalPosition(UASInterface* uas, double lat, double lon, double alt, quint64 usec);
    void updatePosition(float time, double lat, double lon);
71 72
    void updateCameraPosition(double distance, double bearing, QString dir);
    QPointF getPointxBearing_Range(double lat1, double lon1, double bearing, double distance);
pixhawk's avatar
pixhawk committed
73

74 75 76
    /** @brief Clear the waypoints overlay layer */
    void clearWaypoints();
    /** @brief Clear the UAV tracks on the map */
77
    void clearPath();
78
    void changeGlobalWaypointPositionBySpinBox(int index, float lat, float lon);
79
    void drawBorderCamAtMap(bool status);
80 81
    /** @brief Bring up dialog to go to a specific location */
    void goTo();
82

pixhawk's avatar
pixhawk committed
83 84 85 86 87
protected:
    void changeEvent(QEvent* e);
    void wheelEvent(QWheelEvent *event);
    void keyPressEvent(QKeyEvent *event);
    void resizeEvent(QResizeEvent* event);
88 89 90 91
    /** @brief Start widget updating */
    void showEvent(QShowEvent* event);
    /** @brief Stop widget updating */
    void hideEvent(QHideEvent* event);
pixhawk's avatar
pixhawk committed
92

lm's avatar
lm committed
93 94 95 96 97 98 99
    QAction* osmAction;
    QAction* yahooActionMap;
    QAction* yahooActionSatellite;
    QAction* yahooActionOverlay;
    QAction* googleActionMap;
    QAction* googleSatAction;

100

pixhawk's avatar
pixhawk committed
101
    QPushButton* followgps;
102
    QPushButton* createPath;
103
    QPushButton* clearTracking;
pixhawk's avatar
pixhawk committed
104
    QLabel* gpsposition;
lm's avatar
lm committed
105 106 107
    QMenu* mapMenu;
    QPushButton* mapButton;

108 109
    qmapcontrol::MapControl* mc;                   ///< QMapControl widget
    qmapcontrol::MapAdapter* mapadapter;           ///< Adapter to load the map data
lm's avatar
lm committed
110 111
    qmapcontrol::Layer* l;            ///< Current map layer (background)
    qmapcontrol::Layer* overlay;      ///< Street overlay (foreground)
112
    qmapcontrol::Layer* tracks;      ///< Layer for UAV tracks
lm's avatar
lm committed
113
    qmapcontrol::GeometryLayer* geomLayer; ///< Layer for waypoints
114 115 116 117

    //only for experiment
    qmapcontrol::GeometryLayer* camLayer; ///< Layer for camera indicator

pixhawk's avatar
pixhawk committed
118 119 120
    int zoomLevel;
    int detailZoom; ///< Steps zoomed in further than qMapControl allows
    static const int scrollStep = 40; ///< Scroll n pixels per keypress
lm's avatar
lm committed
121
    static const int maxZoom = 50;    ///< Maximum zoom level
122

123
    //Layer* gSatLayer;
pixhawk's avatar
pixhawk committed
124

125 126
    QMap<int, qmapcontrol::Point*> uasIcons;
    QMap<int, qmapcontrol::LineString*> uasTrails;
lm's avatar
lm committed
127
    UASInterface* mav;
pixhawk's avatar
pixhawk committed
128
    quint64 lastUpdate;
lm's avatar
lm committed
129

130 131
  protected slots:
    void captureMapClick (const QMouseEvent* event, const QPointF coordinate);
132 133 134
    void captureGeometryClick(Geometry*, QPoint);
    void captureGeometryDrag(Geometry* geom, QPointF coordinate);
    void captureGeometryEndDrag(Geometry* geom, QPointF coordinate);
135

136 137 138 139 140
    void createPathButtonClicked(bool checked);

    void createWaypointGraphAtMap (const QPointF coordinate);
    void mapproviderSelected(QAction* action);

141
  signals:
142
    //void movePoint(QPointF newCoord);
143
    void captureMapCoordinateClick(const QPointF coordinate); //ROCA
144
    void createGlobalWP(bool value, QPointF centerCoordinate);
145
    void sendGeometryEndDrag(const QPointF coordinate, const int index);
146

147

pixhawk's avatar
pixhawk committed
148 149
private:
    Ui::MapWidget *m_ui;
150
    QList<qmapcontrol::Point*> wps;
151
    qmapcontrol::LineString* waypointPath;
152
    QHash <QString, qmapcontrol::Point*> wpIndex;
153
    QPen* pointPen;
154
    int wpExists(const QPointF coordinate);
155
    bool waypointIsDrag;
156 157 158 159 160 161 162 163


    qmapcontrol::LineString* camLine;
    QList<qmapcontrol::Point*> camPoints;
    QPointF lastCamBorderPos;
    bool drawCamBorder;
    int radioCamera;

pixhawk's avatar
pixhawk committed
164 165 166
};

#endif // MAPWIDGET_H