Skip to content
Snippets Groups Projects
Commit 7d9a7d84 authored by lm's avatar lm
Browse files

Working on map

parent 3de34a66
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ QGCMapWidget::QGCMapWidget(QWidget *parent) :
addUAS(uas);
}
UAV->setVisible(true);
UAV->setPos(40, 8);
UAV->setPos(0, 0);
UAV->show();
......@@ -69,9 +69,20 @@ QGCMapWidget::QGCMapWidget(QWidget *parent) :
UAV->SetUAVPos(pos_lat_lon, 0.0); // set the UAV position
GPS->SetUAVPos(pos_lat_lon, 0.0); // set the UAV position
//SetUAVPos(pos_lat_lon, 0.0); // set the UAV position
setFrameStyle(QFrame::NoFrame); // no border frame
setBackgroundBrush(QBrush(Qt::black)); // tile background
setFocus();
}
QGCMapWidget::~QGCMapWidget()
{
SetShowHome(false); // doing this appears to stop the map lib crashing on exit
SetShowUAV(false); // " "
}
/**
*
* @param uas the UAS/MAV to monitor/display with the HUD
......
......@@ -10,6 +10,7 @@ class QGCMapWidget : public mapcontrol::OPMapWidget
Q_OBJECT
public:
explicit QGCMapWidget(QWidget *parent = 0);
~QGCMapWidget();
signals:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment