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
3de34a66
Commit
3de34a66
authored
Apr 25, 2011
by
lm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Getting 2D OPMapControl to work
parent
0e73f417
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
0 deletions
+56
-0
QGCMapWidget.cc
src/ui/QGCMapWidget.cc
+56
-0
No files found.
src/ui/QGCMapWidget.cc
View file @
3de34a66
...
...
@@ -14,6 +14,62 @@ QGCMapWidget::QGCMapWidget(QWidget *parent) :
UAV
->
setVisible
(
true
);
UAV
->
setPos
(
40
,
8
);
UAV
->
show
();
internals
::
PointLatLng
pos_lat_lon
=
internals
::
PointLatLng
(
0
,
0
);
// // **************
// // default home position
// home_position.coord = pos_lat_lon;
// home_position.altitude = altitude;
// home_position.locked = false;
// // **************
// // 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;
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_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
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
UAV
->
SetTrailTime
(
uav_trail_time_list
[
0
]);
// seconds
UAV
->
SetTrailDistance
(
uav_trail_distance_list
[
1
]);
// meters
//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->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
setFocus
();
}
/**
...
...
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