earth.html 20.6 KB
Newer Older
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 3

<html>
pixhawk's avatar
pixhawk committed
4
  <head>
5 6
  <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  <!-- <head> -->
7
<!-- QGroundControl -->
pixhawk's avatar
pixhawk committed
8 9
    <title>QGroundControl Google Earth View</title>
    <!-- *** Replace the key below below with your own API key, available at http://code.google.com/apis/maps/signup.html *** -->
lm's avatar
lm committed
10
    <!--<script type="text/javascript" src="https://getfirebug.com/firebug-lite-beta.js"></script>-->
11 12
    <script type="text/javascript" src="http://www.google.com/jsapi?key=ABQIAAAAwbkbZLyhsmTCWXbTcjbgbRSzHs7K5SvaUdm8ua-Xxy_-2dYwMxQMhnagaawTo7L1FE1-amhuQxIlXw"></script>
    <script type="text/javascript">
13
google.load("earth", "1", { 'language': 'en'});
pixhawk's avatar
pixhawk committed
14 15

var ge = null;
16
var initialized = false;
lm's avatar
lm committed
17
var currAircraft = 0;
18
var followEnabled = false;
lm's avatar
lm committed
19
var lineAltitudeOffset = 0.5; ///< 0.5 m higher than waypoint, prevents the line from entering the ground
20 21 22

var lastLat = 0;
var lastLon = 0;
lm's avatar
lm committed
23
var lastAlt = 0;
24 25 26
var currLat = 47.3769;
var currLon = 8.549444;
var currAlt = 470;
27 28 29 30 31

var currentCameraLatitude = 0;
var currentCameraLongitude = 0;
var currentCameraAltitude = 0;

32
var currFollowHeading = 0.0;
33 34 35 36

var homeLat = 0;
var homeLon = 0;
var homeAlt = 0;
37
var homeViewRange = 800;
38 39 40
var homeLocation = null;
var homeGroundLevel = 0;

41
var currViewRange = 50.0;	///<< The current viewing range from this position (in meters)
42 43 44
var currTilt = 40.0;		///<< The tilt angle (in degrees)
var currFollowTilt = 40.0;
var currView = null;
45
var distanceMode = 0;
46

47
var viewMode = 0;
48
var lastTilt = currTilt;
49 50 51
var lastRoll = 0;
var lastHeading = 0;

52 53
var M_PI = 3.14159265;

54 55 56 57 58


var planeOrient;
var planeLoc;

59
var aircraft = [];
60 61
var aircraftLocations = [];
var aircraftLastLocations = [];
62 63 64
var attitudes = [];
var locations = [];
var trails = [];
65 66 67
var trailPlacemarks = [];
var trailsVisible = [];
var trailColors = [];
pixhawk's avatar
pixhawk committed
68
var waypoints = [];
LM's avatar
LM committed
69 70 71 72

var waypointLines = [];
var waypointLinePlacemarks = [];
var waypointLineColors = [];
pixhawk's avatar
pixhawk committed
73
//var waypointLines = [];
74
//var trailPlacemarks[id];
75
var lineStyle;
76 77

// Aircraft class
78
var planeColor = '6600ffff';
79

80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
// Enable / disable dragging
var draggingAllowed = true;

// Waypoint interaction flags
var dragInfo = null;

var dragWaypointIndex = "";
var dragWaypointLatitude = 0;
var dragWaypointLongitude = 0;
var dragWaypointAltitude = 0;
var dragWaypointPending = false;

// Waypoint creation flags
var newWaypointLatitude = 0;
var newWaypointLongitude = 0;
var newWaypointAltitude = 0;
var newWaypointPending = false;

98 99
var clickMode = 0;

100 101
var homePlacemark = null;

102 103 104 105 106 107 108 109 110 111
function getGlobal(variable)
{
	return variable;
}

function getDraggingAllowed()
{
	return draggingAllowed;
}

112 113 114 115 116
function setDistanceMode(mode)
{
	distanceMode = mode;
}

117 118
function setDraggingAllowed(allowed)
{
119
	draggingAllowed = allowed;
120 121
}

122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
function sampleCurrentPosition()
{
    var thisView = ge.getView().copyAsLookAt(ge.ALTITUDE_ABSOLUTE);
	currentCameraLatitude = thisView.getLatitude();
	currentCameraLongitude = thisView.getLongitude();
	currentCameraGroundAltitude = ge.getGlobe().getGroundAltitude(currentCameraLatitude, currentCameraLongitude);
}

function enableSetHomeMode()
{
	clickMode = 1;
}

function setLookAtLatLon(lat, lon)
{
	// Keep the current altitude above ground, just move the position
	currView = ge.getView().copyAsLookAt(ge.ALTITUDE_RELATIVE_TO_GROUND);
	currView.setLatitude(lat);
	currView.setLongitude(lon);
	ge.getView().setAbstractView(currView);
}

144 145 146
function setNewWaypointPending(pending)
{
	newWaypointPending = pending;
147
	document.getElementById('JScript_newWaypointPending').setAttribute('value',pending);
148 149 150 151 152
}

function setDragWaypointPending(pending)
{
	dragWaypointPending = pending;
153
	document.getElementById('JScript_dragWaypointPending').setAttribute('value',pending);
154
}
155 156 157 158 159 160

function isInitialized()
{
	return initialized;
}

pixhawk's avatar
pixhawk committed
161

162 163
function init()
{
164 165 166
	google.earth.createInstance("map3d", initCallback, failureCallback);
}

pixhawk's avatar
pixhawk committed
167 168 169 170 171
function setFollowEnabled(enable)
{
	followEnabled = enable;
}

172 173 174 175 176
function enableEventListener()
{
// listen for mousedown on the window (look specifically for point placemarks)
google.earth.addEventListener(ge.getWindow(), 'mousedown', function(event)
{
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
if (clickMode == 1)
    {
    	// Set home mode
    	dragWaypointIndex = 'HOME';
    	document.getElementById('JScript_dragWaypointIndex').setAttribute('value',dragWaypointIndex);
		dragWaypointLatitude = event.getLatitude();
		dragWaypointLongitude = event.getLongitude();
		dragWaypointAltitude = ge.getGlobe().getGroundAltitude(dragWaypointLatitude, dragWaypointLongitude);
		dragWaypointPending = true;
		document.getElementById('JScript_dragWaypointLatitude').setAttribute('value',dragWaypointLatitude);
	   document.getElementById('JScript_dragWaypointLongitude').setAttribute('value',dragWaypointLongitude);
	   document.getElementById('JScript_dragWaypointAltitude').setAttribute('value',dragWaypointAltitude);
	   document.getElementById('JScript_dragWaypointPending').setAttribute('value',true);
	   setGCSHome(dragWaypointLatitude, dragWaypointLongitude, dragWaypointAltitude);
}
    
193 194 195
  if (event.getTarget().getType() == 'KmlPlacemark' &&
      event.getTarget().getGeometry().getType() == 'KmlPoint') {
    var placemark = event.getTarget();
196 197 198
    event.preventDefault();
      if (draggingAllowed)
  {
199 200
  	if (clickMode == 0)
  	{
201 202 203 204
    dragInfo = {
      placemark: event.getTarget(),
      dragged: false
    };
205
    }
206 207 208 209 210 211 212
  }
  }
});

// listen for mousemove on the globe
google.earth.addEventListener(ge.getGlobe(), 'mousemove', function(event)
{
213
  if (draggingAllowed && (clickMode == 0))
214
  {
lm's avatar
lm committed
215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
  	if (dragInfo)
  	{
    	event.preventDefault();
    	var point = dragInfo.placemark.getGeometry();
    	point.setLatitude(event.getLatitude());
    	point.setLongitude(event.getLongitude());
    	dragInfo.dragged = true;
    	dragWaypointIndex = dragInfo.placemark.getDescription();
		document.getElementById('JScript_dragWaypointIndex').setAttribute('value',dragWaypointIndex);
		dragWaypointLatitude = event.getLatitude();
		dragWaypointLongitude = event.getLongitude();
		dragWaypointAltitude = point.getAltitude();
		dragWaypointPending = true;
		document.getElementById('JScript_dragWaypointLatitude').setAttribute('value',dragWaypointLatitude);
	    document.getElementById('JScript_dragWaypointLongitude').setAttribute('value',dragWaypointLongitude);
	    document.getElementById('JScript_dragWaypointAltitude').setAttribute('value',dragWaypointAltitude);
	    document.getElementById('JScript_dragWaypointPending').setAttribute('value',true);
  	}
233 234 235 236 237 238
  }
});

// listen for mouseup on the window
google.earth.addEventListener(ge.getWindow(), 'mouseup', function(event)
{
239
  if (draggingAllowed && (clickMode == 0))
240 241 242 243 244 245 246 247
  {
  if (dragInfo) {
    if (dragInfo.dragged)
    {
      	// if the placemark was dragged, prevent balloons from popping up
      	event.preventDefault();
      	// Get drag end location
      	dragWaypointIndex = dragInfo.placemark.getDescription();
248
		document.getElementById('JScript_dragWaypointIndex').setAttribute('value',dragWaypointIndex);
249 250 251 252 253
      	var point = dragInfo.placemark.getGeometry();
      	dragWaypointLatitude = event.getLatitude();
		dragWaypointLongitude = event.getLongitude();
		dragWaypointAltitude = point.getAltitude();
    	dragWaypointPending = true;
254 255 256 257
		document.getElementById('JScript_dragWaypointLatitude').setAttribute('value',dragWaypointLatitude);
	   document.getElementById('JScript_dragWaypointLongitude').setAttribute('value',dragWaypointLongitude);
	   document.getElementById('JScript_dragWaypointAltitude').setAttribute('value',dragWaypointAltitude);
	   document.getElementById('JScript_dragWaypointPending').setAttribute('value',true);
258 259 260 261 262
    }
    
    dragInfo = null;
  }
  }
263
      clickMode = 0;
264 265 266 267 268 269 270 271 272 273 274 275
});

// Listen for wp creation request on the globe

google.earth.addEventListener(ge.getGlobe(), 'dblclick', function(event){
	if (draggingAllowed)
	{
       event.preventDefault();
       newWaypointLatitude = event.getLatitude();
       newWaypointLongitude = event.getLongitude();
       newWaypointAltitude = ge.getGlobe().getGroundAltitude(newWaypointLatitude, newWaypointLongitude);
       newWaypointPending = true;
276 277 278 279
	   document.getElementById('JScript_newWaypointLatitude').setAttribute('value',newWaypointLatitude);
	   document.getElementById('JScript_newWaypointLongitude').setAttribute('value',newWaypointLongitude);
	   document.getElementById('JScript_newWaypointAltitude').setAttribute('value',newWaypointAltitude);
	   document.getElementById('JScript_newWaypointPending').setAttribute('value',true);
280 281 282 283
    }
}); 
}

284 285


286 287 288 289
function setCurrAircraft(id)
{
	currAircraft = id;
}
290 291 292

function setGCSHome(lat, lon, alt)
{
293 294 295
	// Only update if position actually changed
	if (lat != homeLat || lon != homeLon || alt != homeAlt)
	{
296 297 298 299 300
	homeLat = lat;
	homeLon = lon;
	homeAlt = alt;
	
	
301 302
	if (homePlacemark == null)
	{
lm's avatar
lm committed
303
		var placemark = ge.createPlacemark(''); 
304 305 306 307 308
	    var icon = ge.createIcon(''); 
	    icon.setHref('http://google-maps-icons.googlecode.com/files/blackH.png'); 
	    var style = ge.createStyle(''); 
	    style.getIconStyle().setIcon(icon); 
	    //style.getIconStyle().setScale(0.5); 
309 310
	    placemark.setStyleSelector(style);
	    placemark.setDescription('HOME');
311 312 313 314 315 316 317 318 319

	    // Set the placemark's location.   
	    homeLocation = ge.createPoint(''); 
	    homeLocation.setLatitude(lat); 
	    homeLocation.setLongitude(lon);
	    homeLocation.setAltitude(alt); 
	    placemark.setGeometry(homeLocation);  

	    // Add the placemark to Earth. 
320 321 322 323 324 325
	    ge.getFeatures().appendChild(placemark);
	    
	    homePlacemark = placemark;
	    }
	    else
	    {
326 327 328 329 330 331 332 333 334
	    	var location = ge.createPoint('');
	    	if (location.getLatitude() != lat || location.getLongitude() != lon || location.getAltitude() != alt)
	    	{
	    		location.setLatitude(lat); 
	    		location.setLongitude(lon);
	    		location.setAltitude(alt); 
	    		homePlacemark.setGeometry(location);
	    		homePlacemark.setDescription('HOME');
	    	}
335
	    }
336 337 338 339 340 341

	    homeGroundLevel = ge.getGlobe().getGroundAltitude(lat,lon);
	    if (homeGroundLevel == 0)
	    {
		    homeGroundLevel = alt;
	    }
342
	}
pixhawk's avatar
pixhawk committed
343 344
}

pixhawk's avatar
pixhawk committed
345 346 347 348 349
function updateWaypointListLength(id, len)
{
	// Delete any non-needed waypoints
	if (waypoints.length > len)
	{
350 351
		var initialLength = waypoints.length;
		for (var i=len; i<initialLength; i++)
pixhawk's avatar
pixhawk committed
352 353 354
		{
			var placemark = waypoints.pop();
		    ge.getFeatures().removeChild(placemark);
355
		    waypointLines[id].getCoordinates().pop();
pixhawk's avatar
pixhawk committed
356 357 358 359 360 361 362 363 364 365 366 367 368 369 370
		}
	}
}

function updateWaypoint(id, index, lat, lon, alt, action)
{
	// Check if waypoint exists
	if (waypoints.length > index)
	{
		// Waypoint exists
		// Set the placemark's location.   
	    var location = ge.createPoint(''); 
	    location.setLatitude(lat); 
	    location.setLongitude(lon);
	    location.setAltitude(alt); 
lm's avatar
lm committed
371
	    waypoints[index].setGeometry(location);
372
	    waypoints[index].setDescription(index+"");
LM's avatar
LM committed
373
	    
lm's avatar
lm committed
374 375
	    // Set the WP line location
	    waypointLines[id].getCoordinates().setLatLngAlt(index, lat, lon, alt);
pixhawk's avatar
pixhawk committed
376 377 378 379 380 381 382 383 384
	}
	else
	{
		// Waypoint does not exist yet
		var placemark = ge.createPlacemark(''); 
	    var icon = ge.createIcon('');
	    var numberstring = index;
	    if (index < 10) numberstring = '0' + numberstring
	    icon.setHref('http://google-maps-icons.googlecode.com/files/red' + numberstring +'.png'); 
lm's avatar
lm committed
385
	    var style = ge.createStyle('');
386
	    //console.log('WP ICON created:' + 'http://google-maps-icons.googlecode.com/files/red' + numberstring +'.png');
pixhawk's avatar
pixhawk committed
387 388
	    style.getIconStyle().setIcon(icon); 
	    //style.getIconStyle().setScale(0.5); 
389 390
	    placemark.setStyleSelector(style);
	    placemark.setDescription(index+"");
pixhawk's avatar
pixhawk committed
391 392 393 394 395

	    // Set the placemark's location.   
	    var location = ge.createPoint(''); 
	    location.setLatitude(lat); 
	    location.setLongitude(lon);
lm's avatar
lm committed
396
	    location.setAltitude(alt+lineAltitudeOffset); 
pixhawk's avatar
pixhawk committed
397 398 399 400 401
	    placemark.setGeometry(location);  

	    // Add the placemark to Earth. 
	    ge.getFeatures().appendChild(placemark); 
		waypoints[index] = placemark;
lm's avatar
lm committed
402
        
LM's avatar
LM committed
403 404
        // Add LineString points
	    waypointLines[id].getCoordinates().pushLatLngAlt(lat, lon, alt);
lm's avatar
lm committed
405
	}
pixhawk's avatar
pixhawk committed
406 407
}

pixhawk's avatar
pixhawk committed
408
function createAircraft(id, type, color)
409
{
lm's avatar
lm committed
410 411 412 413 414 415 416 417
	planePlacemark = ge.createPlacemark('');
	planePlacemark.setName('aircraft');
	planeModel = ge.createModel('');
	ge.getFeatures().appendChild(planePlacemark);
	planeLoc = ge.createLocation('');
	planeModel.setLocation(planeLoc);
	planeLink = ge.createLink('');
	planeOrient = ge.createOrientation(''); 
418
	planeModel.setOrientation(planeOrient);
lm's avatar
lm committed
419

420
	planeLink.setHref('http://www.asl.ethz.ch/people/rudink/senseSoarDummy.dae'); 
lm's avatar
lm committed
421 422 423 424 425 426 427 428
	planeModel.setLink(planeLink);
	planeModel.setAltitudeMode (ge.ALTITUDE_ABSOLUTE); 

	planeLoc.setLatitude(currLat);
	planeLoc.setLongitude(currLon);
	planeLoc.setAltitude(currAlt);

	planePlacemark.setGeometry(planeModel);
429
          
lm's avatar
lm committed
430 431 432 433 434
	// Write into global structure
	aircraft[id] = planePlacemark;
	attitudes[id] = planeOrient;
	aircraftLocations[id] = planeLoc;
	aircraftLastLocations[id] = ge.createLocation('');
pixhawk's avatar
pixhawk committed
435
          
lm's avatar
lm committed
436 437
	createTrail(id, color);
	createWaypointLine(id, color);
pixhawk's avatar
pixhawk committed
438 439 440 441
}

function createTrail(id, color)
{
lm's avatar
lm committed
442 443 444 445 446 447 448 449
	trailPlacemarks[id] = ge.createPlacemark('');
	// Create the placemark
	// Create the LineString; set it to extend down to the ground
	// and set the altitude mode
	trails[id] = ge.createLineString('');
	trailPlacemarks[id].setGeometry(trails[id]);
	trails[id].setExtrude(false);
	trails[id].setAltitudeMode(ge.ALTITUDE_ABSOLUTE);
pixhawk's avatar
pixhawk committed
450

lm's avatar
lm committed
451 452 453 454 455 456
	// Create a style and set width and color of line
	trailPlacemarks[id].setStyleSelector(ge.createStyle(''));
	lineStyle = trailPlacemarks[id].getStyleSelector().getLineStyle();
	lineStyle.setWidth(5);
	trailColors[id] = color;
	lineStyle.getColor().set('00000000');  // aabbggrr format
457

lm's avatar
lm committed
458
	trailsVisible[id] = false;
pixhawk's avatar
pixhawk committed
459 460
}

LM's avatar
LM committed
461 462
function createWaypointLine(id, color)
{
lm's avatar
lm committed
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480
	// Create the placemark
	waypointLinePlacemarks[id] = ge.createPlacemark('');
	// Create the LineString; set it to extend down to the ground
	// and set the altitude mode
	waypointLines[id] = ge.createLineString('');
	waypointLinePlacemarks[id].setGeometry(waypointLines[id]);
	waypointLines[id].setExtrude(false);
	waypointLines[id].setAltitudeMode(ge.ALTITUDE_ABSOLUTE);

	// Add LineString points
	//lineString.getCoordinates().pushLatLngAlt(48.754, -121.835, 700);

	// Create a style and set width and color of line
	waypointLinePlacemarks[id].setStyleSelector(ge.createStyle(''));
	lineStyle = waypointLinePlacemarks[id].getStyleSelector().getLineStyle();
	lineStyle.setWidth(15);
	waypointLineColors[id] = color;
	lineStyle.getColor().set(color);  // aabbggrr format
LM's avatar
LM committed
481

lm's avatar
lm committed
482
        
LM's avatar
LM committed
483

lm's avatar
lm committed
484 485 486 487 488 489
        // Create a style and set width and color of line
        //waypointLinePlacemarks[id].setStyleSelector(ge.createStyle(''));
        //lineStyle = waypointLinePlacemarks[id].getStyleSelector().getLineStyle();
        //lineStyle.setWidth(15);
        //lineStyle.getColor().set(waypointLineColors[id]);  // aabbggrr format
        //lineStyle.getColor().set(color);  // aabbggrr format
LM's avatar
LM committed
490

lm's avatar
lm committed
491 492
	// Add the feature to Earth
	ge.getFeatures().appendChild(waypointLinePlacemarks[id]);
LM's avatar
LM committed
493 494
}

lm's avatar
lm committed
495
function clearTrail(id)
496 497 498 499 500 501 502 503 504 505 506 507
{
	ge.getFeatures().removeChild(trailPlacemarks[id]);
	trailPlacemarks[id] = null;
	var isVisible = trailsVisible[id];
	createTrail(id, trailColors[id]);
	if (isVisible)
	{
		showTrail(id);
	}
}

function hideTrail(id)
508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
{
	trailsVisible[id] = false;
	ge.getFeatures().removeChild(trailPlacemarks[id]);
}

function showTrail(id)
{
	ge.getFeatures().appendChild(trailPlacemarks[id]);
	trailsVisible[id] = true;
}

function setViewRange(dist)
{
	currViewRange = dist;
}

pixhawk's avatar
pixhawk committed
524 525
function addTrailPosition(id, lat, lon, alt)
{
lm's avatar
lm committed
526 527
	//trails[id].setExtrude(false);
    //trails[id].setAltitudeMode(ge.ALTITUDE_ABSOLUTE);
528

529
    // Add LineString points
530
	trails[id].getCoordinates().pushLatLngAlt(lat, lon, alt);
531

532 533 534 535 536
    // Create a style and set width and color of line
    trailPlacemarks[id].setStyleSelector(ge.createStyle(''));
    lineStyle = trailPlacemarks[id].getStyleSelector().getLineStyle();
    lineStyle.setWidth(5);
    lineStyle.getColor().set(trailColors[id]);  // aabbggrr format
pixhawk's avatar
pixhawk committed
537 538
}

539 540
function initCallback(object)
{
541 542 543 544
    ge = object;
    ge.getWindow().setVisibility(true);
    ge.getOptions().setStatusBarVisibility(true); 
    ge.getOptions().setScaleLegendVisibility(true);
pixhawk's avatar
pixhawk committed
545 546
    //ge.getOptions().setFlyToSpeed(5.0); 
    ge.getOptions().setFlyToSpeed(ge.SPEED_TELEPORT); 
547
    ge.getNavigationControl().setVisibility(ge.VISIBILITY_AUTO);
pixhawk's avatar
pixhawk committed
548
        
549 550 551 552
    ge.getLayerRoot().enableLayerById(ge.LAYER_TERRAIN, true); 
    ge.getLayerRoot().enableLayerById(ge.LAYER_BUILDINGS, true); 
    ge.getLayerRoot().enableLayerById(ge.LAYER_BORDERS, true); 
    ge.getLayerRoot().enableLayerById(ge.LAYER_TREES, true);
553 554
    
    enableEventListener();
555
	document.getElementById('JScript_initialized').setAttribute('value','true');
556
    initialized = true;
557 558 559 560 561 562
}

function setAircraftPositionAttitude(id, lat, lon, alt, roll, pitch, yaw)
{
	if (id == currAircraft)
	{
lm's avatar
lm committed
563 564 565
		if (lastLat == 0)
		{
			lastLat = currLat;
pixhawk's avatar
pixhawk committed
566
			lastLon = currLon;
lm's avatar
lm committed
567
		}
lm's avatar
lm committed
568
		
569 570
		currLat = lat;
		currLon = lon;
571 572 573 574 575 576 577 578 579
		var trueGroundAlt = ge.getGlobe().getGroundAltitude(lat, lon);
		if (trueGroundAlt < alt)
		{
		  currAlt = alt;
	    }
	    else
	    {
	      currAlt = trueGroundAlt+0.1;
	    }
pixhawk's avatar
pixhawk committed
580 581 582 583
		// Interpolate between t-1 and t and set new states
		lastLat = lastLat*0.8+currLat*0.2;
		lastLon = lastLon*0.8+currLon*0.2;
		lastAlt = lastAlt*0.8+currAlt*0.2;
584
		//currFollowHeading = ((yaw/M_PI)+1.0)*360.0;
585
	
586
	
587
		planeOrient.setRoll(+((pitch / M_PI)) * 180.0);  
588
		planeOrient.setTilt(-((roll / M_PI)) * 180.0);  
589
		planeOrient.setHeading(((yaw / M_PI)) * 180.0 - 90.0); 
590
		planeModel.setOrientation(planeOrient);
pixhawk's avatar
pixhawk committed
591
	
lm's avatar
lm committed
592
		currFollowHeading = ((yaw/M_PI))*180.0;
593
    
lm's avatar
lm committed
594 595 596 597
    	planeLoc.setLatitude(lastLat);
    	planeLoc.setLongitude(lastLon);
    	planeLoc.setAltitude(lastAlt);
    	planeModel.setLocation(planeLoc);
pixhawk's avatar
pixhawk committed
598
    
lm's avatar
lm committed
599
    	if (followEnabled) updateFollowAircraft();
600
    }
pixhawk's avatar
pixhawk committed
601 602
}

603 604 605 606 607 608 609 610 611 612 613
function enableDaylight(enabled)
{
	if(enabled)
	{
		ge.getSun().setVisibility(true);
	}
	else
	{
		ge.getSun().setVisibility(false);
	}
}
614 615 616 617 618

function enableAtmosphere(enabled)
{
	ge.getOptions().setAtmosphereVisibility(enabled);
}
619
		
620 621 622 623 624 625 626 627 628
function goHome()
{
	var currView = ge.getView().copyAsLookAt(ge.ALTITUDE_ABSOLUTE);
	currView.setLatitude(homeLat);
	currView.setLongitude(homeLon);
	currView.setAltitude(homeAlt);
	currView.setRange(homeViewRange);
	currView.setTilt(currTilt);
	ge.getView().setAbstractView(currView);
pixhawk's avatar
pixhawk committed
629
}
630 631 632 633 634 635

function setCurrentAircraft(id)
{
	currAircraft = id;
}

636 637
/** @brief Set the current view mode
 *
638
 * @param mode 0: side map view, 1: top/north map view, 2: fixed chase cam, 3: free chase cam
639 640 641
 */
function setViewMode(mode)
{
642
	var currView = ge.getView().copyAsLookAt(ge.ALTITUDE_RELATIVE_TO_GROUND);
643 644 645
	
	if (mode == 0)
	{
646 647
		currView.setTilt(lastTilt);
		currView.setHeading(lastHeading);
648
	}
lm's avatar
lm committed
649
	
650
	if (mode == 1 && viewMode != mode)
651 652 653 654 655 656 657
	{
		lastTilt = currView.getTilt();
		lastHeading = currView.getHeading();
		currView.setTilt(0);
		currView.setHeading(0);
	}
	
658 659
	viewMode = mode;
	
660
	ge.getView().setAbstractView(currView);
661 662
}

663 664 665
function updateFollowAircraft()
{
	currView = ge.getView().copyAsLookAt(ge.ALTITUDE_ABSOLUTE);
666 667
	currView.setLatitude(lastLat);
	currView.setLongitude(lastLon);
668 669 670 671 672 673 674 675
	
	if (distanceMode == 1)
	{
		var groundAltitude = ge.getGlobe().getGroundAltitude(lastLat, lastLon);
		currView.setAltitude(groundAltitude);
	}
	
	if (distanceMode == 0) currView.setAltitude(lastAlt);
676

677
	currView.setRange(currViewRange);
678 679 680
	
	if (viewMode != 3) // VIEW_MODE_CHASE_FREE
	{
681 682 683 684 685 686 687 688 689 690
		ge.getView().setAbstractView(currView);
		var camera = ge.getView().copyAsCamera(ge.ALTITUDE_ABSOLUTE);
		camera.setTilt(currFollowTilt);
		camera.setRoll(0);
		camera.setHeading(currFollowHeading);
		ge.getView().setAbstractView(camera);
	}
	else
	{
		ge.getView().setAbstractView(currView);
691
	}
692 693 694 695 696 697 698 699
}

function failureCallback(object)
{
}
</script>


pixhawk's avatar
pixhawk committed
700 701 702 703 704 705 706 707 708 709 710 711
    <style type="text/css">
    html, body {
      margin: 0;
      width: 100%;
      height: 100%;
    }
    </style>
  </head>
  <body onload='init()' id='body'>
    <center>
      <div id='map3d' style='margin: 0; spacing: 0; height: 100%; width: 100%'></div>
    </center>
712 713 714 715 716 717 718 719 720 721
	<input type="hidden" id="JScript_initialized" value="false" />
    <input type="hidden" id="JScript_dragWaypointIndex" value="0" />
	<input type="hidden" id="JScript_dragWaypointLatitude" value="0" />
	<input type="hidden" id="JScript_dragWaypointLongitude" value="0" />
	<input type="hidden" id="JScript_dragWaypointAltitude" value="0" />
	<input type="hidden" id="JScript_dragWaypointPending" value="false" />
	<input type="hidden" id="JScript_newWaypointLatitude" value="0" />
	<input type="hidden" id="JScript_newWaypointLongitude" value="0" />
	<input type="hidden" id="JScript_newWaypointAltitude" value="0" />
	<input type="hidden" id="JScript_newWaypointPending" value="false" />
722 723 724
	<input type="hidden" id="JScript_currentCameraLatitude" value="0" />
	<input type="hidden" id="JScript_currentCameraLongitude" value="0" />
	<input type="hidden" id="JScript_currentCameraGroundAltitude" value="0" />
pixhawk's avatar
pixhawk committed
725 726
  </body>
</html>