QGCMapWidget.h 409 Bytes
Newer Older
lm's avatar
lm committed
1 2 3
#ifndef QGCMAPWIDGET_H
#define QGCMAPWIDGET_H

lm's avatar
lm committed
4 5
#include "opmapcontrol.h"

lm's avatar
lm committed
6 7
class UASInterface;

lm's avatar
lm committed
8
class QGCMapWidget : public mapcontrol::OPMapWidget
lm's avatar
lm committed
9 10 11 12 13 14 15 16
{
    Q_OBJECT
public:
    explicit QGCMapWidget(QWidget *parent = 0);

signals:

public slots:
lm's avatar
lm committed
17 18
    void addUAS(UASInterface* uas);
    void updateGlobalPosition(UASInterface* uas, double lat, double lon, double alt, quint64 usec);
lm's avatar
lm committed
19 20 21 22

};

#endif // QGCMAPWIDGET_H