Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
7d9a7d84
Commit
7d9a7d84
authored
May 03, 2011
by
lm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Working on map
parent
3de34a66
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
36 deletions
+48
-36
QGCMapWidget.cc
src/ui/QGCMapWidget.cc
+47
-36
QGCMapWidget.h
src/ui/QGCMapWidget.h
+1
-0
No files found.
src/ui/QGCMapWidget.cc
View file @
7d9a7d84
...
...
@@ -3,7 +3,7 @@
#include "UASManager.h"
QGCMapWidget
::
QGCMapWidget
(
QWidget
*
parent
)
:
mapcontrol
::
OPMapWidget
(
parent
)
mapcontrol
::
OPMapWidget
(
parent
)
{
//UAV = new mapcontrol::UAVItem();
connect
(
UASManager
::
instance
(),
SIGNAL
(
UASCreated
(
UASInterface
*
)),
this
,
SLOT
(
addUAS
(
UASInterface
*
)));
...
...
@@ -12,7 +12,7 @@ QGCMapWidget::QGCMapWidget(QWidget *parent) :
addUAS
(
uas
);
}
UAV
->
setVisible
(
true
);
UAV
->
setPos
(
40
,
8
);
UAV
->
setPos
(
0
,
0
);
UAV
->
show
();
...
...
@@ -20,56 +20,67 @@ QGCMapWidget::QGCMapWidget(QWidget *parent) :
internals
::
PointLatLng
pos_lat_lon
=
internals
::
PointLatLng
(
0
,
0
);
// // **************
// // default home position
// // **************
// // default home position
// home_position.coord = pos_lat_lon;
// home_position.altitude = altitude;
// home_position.locked = false;
// home_position.coord = pos_lat_lon;
// home_position.altitude = altitude;
// home_position.locked = false;
// // **************
// // default magic waypoint params
// // **************
// // default magic waypoint params
// magic_waypoint.map_wp_item = NULL;
// magic_waypoint.coord = home_position.coord;
// magic_waypoint.altitude = altitude;
// magic_waypoint.description = "Magic waypoint";
// magic_waypoint.locked = false;
// magic_waypoint.time_seconds = 0;
// magic_waypoint.hold_time_seconds = 0;
// magic_waypoint.map_wp_item = NULL;
// magic_waypoint.coord = home_position.coord;
// magic_waypoint.altitude = altitude;
// magic_waypoint.description = "Magic waypoint";
// magic_waypoint.locked = false;
// magic_waypoint.time_seconds = 0;
// magic_waypoint.hold_time_seconds = 0;
const
int
safe_area_radius_list
[]
=
{
5
,
10
,
20
,
50
,
100
,
200
,
500
,
1000
,
2000
,
5000
};
// meters
const
int
safe_area_radius_list
[]
=
{
5
,
10
,
20
,
50
,
100
,
200
,
500
,
1000
,
2000
,
5000
};
// meters
const
int
uav_trail_time_list
[]
=
{
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
};
// seconds
const
int
uav_trail_time_list
[]
=
{
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
};
// seconds
const
int
uav_trail_distance_list
[]
=
{
1
,
2
,
5
,
10
,
20
,
50
,
100
,
200
,
500
};
// meters
const
int
uav_trail_distance_list
[]
=
{
1
,
2
,
5
,
10
,
20
,
50
,
100
,
200
,
500
};
// meters
SetMouseWheelZoomType
(
internals
::
MouseWheelZoomType
::
MousePositionWithoutCenter
);
// set how the mouse wheel zoom functions
SetFollowMouse
(
true
);
// we want a contiuous mouse position reading
SetMouseWheelZoomType
(
internals
::
MouseWheelZoomType
::
MousePositionWithoutCenter
);
// set how the mouse wheel zoom functions
SetFollowMouse
(
true
);
// we want a contiuous mouse position reading
SetShowHome
(
true
);
// display the HOME position on the map
SetShowUAV
(
true
);
// display the UAV position on the map
SetShowHome
(
true
);
// display the HOME position on the map
SetShowUAV
(
true
);
// display the UAV position on the map
Home
->
SetSafeArea
(
safe_area_radius_list
[
0
]);
// set radius (meters)
Home
->
SetShowSafeArea
(
true
);
// show the safe area
Home
->
SetSafeArea
(
safe_area_radius_list
[
0
]);
// set radius (meters)
Home
->
SetShowSafeArea
(
true
);
// show the safe area
UAV
->
SetTrailTime
(
uav_trail_time_list
[
0
]);
// seconds
UAV
->
SetTrailDistance
(
uav_trail_distance_list
[
1
]);
// meters
UAV
->
SetTrailTime
(
uav_trail_time_list
[
0
]);
// seconds
UAV
->
SetTrailDistance
(
uav_trail_distance_list
[
1
]);
// meters
//UAV->SetTrailType(UAVTrailType::ByTimeElapsed);
//UAV->SetTrailType(UAVTrailType::ByTimeElapsed);
// UAV->SetTrailType(UAVTrailType::ByDistance);
GPS
->
SetTrailTime
(
uav_trail_time_list
[
0
]);
// seconds
GPS
->
SetTrailDistance
(
uav_trail_distance_list
[
1
]);
// meters
GPS
->
SetTrailTime
(
uav_trail_time_list
[
0
]);
// seconds
GPS
->
SetTrailDistance
(
uav_trail_distance_list
[
1
]);
// meters
//GPS->SetTrailType(UAVTrailType::ByTimeElapsed);
//GPS->SetTrailType(UAVTrailType::ByTimeElapsed);
SetCurrentPosition
(
pos_lat_lon
);
// set the map position
Home
->
SetCoord
(
pos_lat_lon
);
// set the HOME position
UAV
->
SetUAVPos
(
pos_lat_lon
,
0.0
);
// set the UAV position
GPS
->
SetUAVPos
(
pos_lat_lon
,
0.0
);
// set the UAV position
SetCurrentPosition
(
pos_lat_lon
);
// set the map position
Home
->
SetCoord
(
pos_lat_lon
);
// set the HOME position
UAV
->
SetUAVPos
(
pos_lat_lon
,
0.0
);
// set the UAV position
GPS
->
SetUAVPos
(
pos_lat_lon
,
0.0
);
// set the UAV position
setFocus
();
//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
);
// " "
}
/**
...
...
src/ui/QGCMapWidget.h
View file @
7d9a7d84
...
...
@@ -10,6 +10,7 @@ class QGCMapWidget : public mapcontrol::OPMapWidget
Q_OBJECT
public:
explicit
QGCMapWidget
(
QWidget
*
parent
=
0
);
~
QGCMapWidget
();
signals:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment