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
0198993e
Commit
0198993e
authored
Dec 29, 2010
by
pixhawk
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'experimental' of pixhawk.ethz.ch:qgroundcontrol into experimental
parents
d5f5922c
1d560d9c
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
394 additions
and
320 deletions
+394
-320
earth.html
images/earth.html
+26
-21
qgroundcontrol.pri
qgroundcontrol.pri
+4
-2
QGCGoogleEarthView.cc
src/ui/map3D/QGCGoogleEarthView.cc
+345
-295
QGCGoogleEarthView.h
src/ui/map3D/QGCGoogleEarthView.h
+19
-2
No files found.
images/earth.html
View file @
0198993e
...
...
@@ -13,12 +13,13 @@ google.load("earth", "1", { 'language': 'en'});
var
ge
=
null
;
var
initialized
=
false
;
var
aircraft
=
new
Array
();
var
currAircraft
=
220
;
var
follow
Enabled
=
false
;
var
follow
Aircraft
=
false
;
var
currLat
=
47.3769
;
var
currLon
=
8.549444
;
var
currAlt
=
470
;
var
currFollowHeading
=
0.0
;
var
homeLat
=
0
;
var
homeLon
=
0
;
...
...
@@ -32,17 +33,11 @@ var currTilt = 40.0; ///<< The tilt angle (in degrees)
var
currFollowTilt
=
40.0
;
var
currView
=
null
;
var
M_PI
=
3.14159265
;
var
planeOrient
;
var
planeLoc
;
var
aircraft
=
[];
var
attitudes
=
[];
var
locations
=
[];
var
trails
=
[];
var
trail
;
var
lineStringPlacemark
;
var
lineStyle
;
...
...
@@ -62,10 +57,7 @@ function init() {
function
setCurrAircraft
(
id
)
{
currAircraft
=
id
;
}
function
setGCSHome
(
lat
,
lon
,
alt
)
{
...
...
@@ -98,6 +90,13 @@ function setGCSHome(lat, lon, alt)
{
homeGroundLevel
=
alt
;
}
goHome
();
}
function
createAircraft
(
id
,
type
,
color
)
...
...
@@ -205,19 +204,17 @@ function setAircraftPositionAttitude(id, lat, lon, alt, roll, pitch, yaw)
currLat
=
lat
;
currLon
=
lon
;
currAlt
=
alt
;
currFollowHeading
=
((
yaw
/
M_PI
)
+
1.0
)
*
360.0
;
}
// FIXME Currently invalid conversion from right-handed z-down to z-up frame
planeOrient
.
setRoll
(((
roll
/
M_PI
)
+
1.0
)
*
360.0
);
planeOrient
.
setTilt
(((
pitch
/
M_PI
)
+
1.0
)
*
360.0
);
planeOrient
.
setHeading
(((
yaw
/
M_PI
)
+
1.0
)
*
360.0
);
planeOrient
.
setRoll
(
roll
);
planeOrient
.
setTilt
(
pitch
);
planeOrient
.
setHeading
(
yaw
);
planeLoc
.
setLatitude
(
lat
);
planeLoc
.
setLongitude
(
lon
);
planeLoc
.
setAltitude
(
alt
);
planeLoc
.
setLatitude
(
lat
);
planeLoc
.
setLongitude
(
lon
);
planeLoc
.
setAltitude
(
alt
);
}
...
...
@@ -249,16 +246,24 @@ function setCurrentAircraft(id)
currAircraft
=
id
;
}
function
enableFollowing
(
follow
)
{
followEnabled
=
follow
;
}
function
updateFollowAircraft
()
{
if
(
followEnabled
)
{
currView
=
ge
.
getView
().
copyAsLookAt
(
ge
.
ALTITUDE_ABSOLUTE
);
currView
.
setLatitude
(
currLat
);
currView
.
setLongitude
(
currLon
);
currView
.
setAltitude
(
currAlt
);
currView
.
setRange
(
currViewRange
);
currView
.
setTilt
(
currFollowTilt
);
currView
.
setHeading
(
currFollowHeading
-
90.0
);
ge
.
getView
().
setAbstractView
(
currView
);
}
}
function
failureCallback
(
object
)
...
...
qgroundcontrol.pri
View file @
0198993e
...
...
@@ -300,8 +300,9 @@ win32-msvc2008 {
DEFINES += QT_NO_DEBUG
}
# Special settings for debug
#CONFIG += CONSOLE
debug {
CONFIG += console
}
INCLUDEPATH += $$BASEDIR/lib/sdl/msvc/include \
$$BASEDIR/lib/opal/include \
...
...
@@ -379,6 +380,7 @@ win32-g++ {
debug {
#DESTDIR = $$BUILDDIR/debug
CONFIG += console
}
release {
...
...
src/ui/map3D/QGCGoogleEarthView.cc
View file @
0198993e
This diff is collapsed.
Click to expand it.
src/ui/map3D/QGCGoogleEarthView.h
View file @
0198993e
...
...
@@ -11,19 +11,36 @@
#ifdef _MSC_VER
#include <ActiveQt/QAxWidget>
#include <ActiveQt/QAxObject>
#include "windows.h"
class
QGCWebAxWidget
:
public
QAxWidget
{
public:
//Q_OBJECT
QGCWebAxWidget
(
QWidget
*
parent
=
0
,
Qt
::
WindowFlags
f
=
0
)
:
QAxWidget
(
parent
,
f
)
:
QAxWidget
(
parent
,
f
),
_document
(
NULL
)
{
// Set web browser control
setControl
(
"{8856F961-340A-11D0-A96B-00C04FD705A2}"
);
//QObject::connect(this, SIGNAL(DocumentComplete(IDispatch*, QVariant&)), this, SLOT(setDocument(IDispatch*, QVariant&)));
}
QAxObject
*
document
()
{
return
_document
;
}
protected:
void
setDocument
(
IDispatch
*
dispatch
,
QVariant
&
variant
)
{
_document
=
this
->
querySubObject
(
"Document()"
);
}
protected:
QAxObject
*
_document
;
virtual
bool
translateKeyEvent
(
int
message
,
int
keycode
)
const
{
if
(
message
>=
WM_KEYFIRST
&&
message
<=
WM_KEYLAST
)
...
...
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