earth.html 22.3 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 *** -->
10
    <script type="text/javascript" src="https://getfirebug.com/firebug-lite-beta.js"></script>
11
    <script type="text/javascript" src="https://www.google.com/jsapi?key=ABQIAAAA5Q6wxQ6lxKS8haLVdUJaqhSjosg_0jiTTs2iXtkDVG0n0If1mBRHzhWw5VqBZX-j4NuzoVpU-UaHVg"></script>
12
    <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

LM's avatar
LM committed
21 22 23
var lastLat = [];
var lastLon = [];
var lastAlt = [];
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 = [];
LM's avatar
LM committed
62 63 64
var aircraftScaleFactors = [];
var aircraftLinks = [];
var aircraftModels = [];
65 66 67
var attitudes = [];
var locations = [];
var trails = [];
68 69 70
var trailPlacemarks = [];
var trailsVisible = [];
var trailColors = [];
pixhawk's avatar
pixhawk committed
71
var waypoints = [];
LM's avatar
LM committed
72 73 74 75

var waypointLines = [];
var waypointLinePlacemarks = [];
var waypointLineColors = [];
pixhawk's avatar
pixhawk committed
76
//var waypointLines = [];
77
//var trailPlacemarks[id];
78
var lineStyle;
79 80

// Aircraft class
81
var planeColor = '6600ffff';
82

83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
// 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;

101 102
var clickMode = 0;

103 104
var homePlacemark = null;

105 106 107 108 109

// Data / heightmap
var heightMapPlacemark = null;
var heightMapModel = null;

110 111 112 113 114 115 116 117 118 119
function getGlobal(variable)
{
	return variable;
}

function getDraggingAllowed()
{
	return draggingAllowed;
}

120 121 122 123 124
function setDistanceMode(mode)
{
	distanceMode = mode;
}

125 126
function setDraggingAllowed(allowed)
{
127
	draggingAllowed = allowed;
128 129
}

130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
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);
}

152 153 154
function setNewWaypointPending(pending)
{
	newWaypointPending = pending;
155
	document.getElementById('JScript_newWaypointPending').setAttribute('value',pending);
156 157 158 159 160
}

function setDragWaypointPending(pending)
{
	dragWaypointPending = pending;
161
	document.getElementById('JScript_dragWaypointPending').setAttribute('value',pending);
162
}
163 164 165 166 167 168

function isInitialized()
{
	return initialized;
}

pixhawk's avatar
pixhawk committed
169

170 171
function init()
{
172 173 174
	google.earth.createInstance("map3d", initCallback, failureCallback);
}

pixhawk's avatar
pixhawk committed
175 176 177 178 179
function setFollowEnabled(enable)
{
	followEnabled = enable;
}

180 181 182 183 184
function enableEventListener()
{
// listen for mousedown on the window (look specifically for point placemarks)
google.earth.addEventListener(ge.getWindow(), 'mousedown', function(event)
{
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
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);
}
    
201 202 203
  if (event.getTarget().getType() == 'KmlPlacemark' &&
      event.getTarget().getGeometry().getType() == 'KmlPoint') {
    var placemark = event.getTarget();
204 205 206
    event.preventDefault();
      if (draggingAllowed)
  {
207 208
  	if (clickMode == 0)
  	{
209 210 211 212
    dragInfo = {
      placemark: event.getTarget(),
      dragged: false
    };
213
    }
214 215 216 217 218 219 220
  }
  }
});

// listen for mousemove on the globe
google.earth.addEventListener(ge.getGlobe(), 'mousemove', function(event)
{
221
  if (draggingAllowed && (clickMode == 0))
222
  {
lm's avatar
lm committed
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
  	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);
  	}
241 242 243 244 245 246
  }
});

// listen for mouseup on the window
google.earth.addEventListener(ge.getWindow(), 'mouseup', function(event)
{
247
  if (draggingAllowed && (clickMode == 0))
248 249 250 251 252 253 254 255
  {
  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();
256
		document.getElementById('JScript_dragWaypointIndex').setAttribute('value',dragWaypointIndex);
257 258 259 260 261
      	var point = dragInfo.placemark.getGeometry();
      	dragWaypointLatitude = event.getLatitude();
		dragWaypointLongitude = event.getLongitude();
		dragWaypointAltitude = point.getAltitude();
    	dragWaypointPending = true;
262 263 264 265
		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);
266 267 268 269 270
    }
    
    dragInfo = null;
  }
  }
271
      clickMode = 0;
272 273 274 275 276 277 278 279 280 281 282 283
});

// 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;
284 285 286 287
	   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);
288 289 290 291
    }
}); 
}

292 293


294 295 296 297
function setCurrAircraft(id)
{
	currAircraft = id;
}
298 299 300

function setGCSHome(lat, lon, alt)
{
301 302 303
	// Only update if position actually changed
	if (lat != homeLat || lon != homeLon || alt != homeAlt)
	{
304 305 306 307
	homeLat = lat;
	homeLon = lon;
	homeAlt = alt;
	
308 309
	if (homePlacemark == null)
	{
lm's avatar
lm committed
310
		var placemark = ge.createPlacemark(''); 
311 312 313 314 315
	    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); 
316 317
	    placemark.setStyleSelector(style);
	    placemark.setDescription('HOME');
318 319 320 321 322 323 324 325 326

	    // 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. 
327 328 329 330 331 332
	    ge.getFeatures().appendChild(placemark);
	    
	    homePlacemark = placemark;
	    }
	    else
	    {
333 334 335 336 337 338 339 340 341
	    	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');
	    	}
342
	    }
343 344 345 346 347 348

	    homeGroundLevel = ge.getGlobe().getGroundAltitude(lat,lon);
	    if (homeGroundLevel == 0)
	    {
		    homeGroundLevel = alt;
	    }
349
	}
pixhawk's avatar
pixhawk committed
350 351
}

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

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
378
	    waypoints[index].setGeometry(location);
379
	    waypoints[index].setDescription(index+"");
LM's avatar
LM committed
380
	    
lm's avatar
lm committed
381 382
	    // Set the WP line location
	    waypointLines[id].getCoordinates().setLatLngAlt(index, lat, lon, alt);
pixhawk's avatar
pixhawk committed
383 384 385 386 387 388 389 390 391
	}
	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
392
	    var style = ge.createStyle('');
393
	    //console.log('WP ICON created:' + 'http://google-maps-icons.googlecode.com/files/red' + numberstring +'.png');
pixhawk's avatar
pixhawk committed
394 395
	    style.getIconStyle().setIcon(icon); 
	    //style.getIconStyle().setScale(0.5); 
396 397
	    placemark.setStyleSelector(style);
	    placemark.setDescription(index+"");
pixhawk's avatar
pixhawk committed
398 399 400 401 402

	    // Set the placemark's location.   
	    var location = ge.createPoint(''); 
	    location.setLatitude(lat); 
	    location.setLongitude(lon);
lm's avatar
lm committed
403
	    location.setAltitude(alt+lineAltitudeOffset); 
pixhawk's avatar
pixhawk committed
404 405 406 407 408
	    placemark.setGeometry(location);  

	    // Add the placemark to Earth. 
	    ge.getFeatures().appendChild(placemark); 
		waypoints[index] = placemark;
lm's avatar
lm committed
409
        
LM's avatar
LM committed
410 411
        // Add LineString points
	    waypointLines[id].getCoordinates().pushLatLngAlt(lat, lon, alt);
lm's avatar
lm committed
412
	}
pixhawk's avatar
pixhawk committed
413 414
}

pixhawk's avatar
pixhawk committed
415
function createAircraft(id, type, color)
416
{
LM's avatar
LM committed
417 418 419 420 421 422 423 424 425
	aircraft[id] = ge.createPlacemark('');
	aircraft[id].setName('aircraft');
	aircraftModels[id] = ge.createModel('');
	ge.getFeatures().appendChild(aircraft[id]);
	aircraftLocations[id] = ge.createLocation('');
	aircraftModels[id].setLocation(aircraftLocations[id]);
	aircraftLinks[id] = ge.createLink('');
	attitudes[id] = ge.createOrientation(''); 
	aircraftModels[id].setOrientation(attitudes[id]);
426
	
LM's avatar
LM committed
427
	aircraftScaleFactors[id] = 1.0;
lm's avatar
lm committed
428

429
	//planeLink.setHref('http://www.asl.ethz.ch/people/rudink/senseSoarDummy.dae'); 
LM's avatar
LM committed
430 431
	aircraftLinks[id].setHref('http://qgroundcontrol.org/_media/users/models/sfly-hex.dae');
	aircraftScaleFactors[id] = 1.0/1000.0;
432
	//planeLink.setHref('http://qgroundcontrol.org/_media/users/models/ascent-park-glider.dae');
LM's avatar
LM committed
433 434 435 436 437
	aircraftModels[id].setLink(aircraftLinks[id]);
	var scale = aircraftModels[id].getScale();
	scale.set(scale.getX()*aircraftScaleFactors[id], scale.getY()*aircraftScaleFactors[id], scale.getZ()*aircraftScaleFactors[id])
	aircraftModels[id].setScale(scale);
	aircraftModels[id].setAltitudeMode (ge.ALTITUDE_ABSOLUTE); 
lm's avatar
lm committed
438

LM's avatar
LM committed
439 440 441
	aircraftLocations[id].setLatitude(currLat);
	aircraftLocations[id].setLongitude(currLon);
	aircraftLocations[id].setAltitude(currAlt);
lm's avatar
lm committed
442

LM's avatar
LM committed
443
	aircraft[id].setGeometry(aircraftModels[id]);
444
          
lm's avatar
lm committed
445
	// Write into global structure
LM's avatar
LM committed
446 447 448 449
	aircraftLastLocations[id] = aircraftLocations[id];
	lastLat[id] = 0;
	lastLon[id] = 0;
	lastAlt[id] = 0;
pixhawk's avatar
pixhawk committed
450
          
lm's avatar
lm committed
451 452
	createTrail(id, color);
	createWaypointLine(id, color);
pixhawk's avatar
pixhawk committed
453 454 455 456
}

function createTrail(id, color)
{
lm's avatar
lm committed
457 458 459 460 461 462 463 464
	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
465

lm's avatar
lm committed
466 467 468 469 470 471
	// 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
472

lm's avatar
lm committed
473
	trailsVisible[id] = false;
pixhawk's avatar
pixhawk committed
474 475
}

LM's avatar
LM committed
476 477
function createWaypointLine(id, color)
{
lm's avatar
lm committed
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
	// 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
496

lm's avatar
lm committed
497
        
LM's avatar
LM committed
498

lm's avatar
lm committed
499 500 501 502 503 504
        // 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
505

lm's avatar
lm committed
506 507
	// Add the feature to Earth
	ge.getFeatures().appendChild(waypointLinePlacemarks[id]);
LM's avatar
LM committed
508 509
}

lm's avatar
lm committed
510
function clearTrail(id)
511 512 513 514 515 516 517 518 519 520 521 522
{
	ge.getFeatures().removeChild(trailPlacemarks[id]);
	trailPlacemarks[id] = null;
	var isVisible = trailsVisible[id];
	createTrail(id, trailColors[id]);
	if (isVisible)
	{
		showTrail(id);
	}
}

function hideTrail(id)
523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538
{
	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
539 540
function addTrailPosition(id, lat, lon, alt)
{
lm's avatar
lm committed
541 542
	//trails[id].setExtrude(false);
    //trails[id].setAltitudeMode(ge.ALTITUDE_ABSOLUTE);
543

544
    // Add LineString points
545
	trails[id].getCoordinates().pushLatLngAlt(lat, lon, alt);
546

547 548 549 550 551
    // 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
552 553
}

554 555
function initCallback(object)
{
556 557 558 559
    ge = object;
    ge.getWindow().setVisibility(true);
    ge.getOptions().setStatusBarVisibility(true); 
    ge.getOptions().setScaleLegendVisibility(true);
pixhawk's avatar
pixhawk committed
560 561
    //ge.getOptions().setFlyToSpeed(5.0); 
    ge.getOptions().setFlyToSpeed(ge.SPEED_TELEPORT); 
562
    ge.getNavigationControl().setVisibility(ge.VISIBILITY_AUTO);
pixhawk's avatar
pixhawk committed
563
        
564 565 566 567
    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);
568 569
    
    enableEventListener();
570
	document.getElementById('JScript_initialized').setAttribute('value','true');
571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
	
	// Load heightmap
	// http://www.inf.ethz.ch/personal/lomeier/data/untex-environment.dae
	
	heightMapPlacemark = ge.createPlacemark('');
	heightMapPlacemark.setName('aircraft');
	heightMapModel = ge.createModel('');
	ge.getFeatures().appendChild(heightMapPlacemark);
	planeLoc = ge.createLocation('');
	heightMapModel.setLocation(planeLoc);
	planeLink = ge.createLink('');
	planeOrient = ge.createOrientation(''); 
	heightMapModel.setOrientation(planeOrient); 

	planeLink.setHref('http://www.inf.ethz.ch/personal/lomeier/data/untex-environment.dae'); 
	heightMapModel.setLink(planeLink);
	var scale = heightMapModel.getScale();
	var factor = 1.0;//1.0/1000.0;
	scale.set(scale.getX()*factor, scale.getY()*factor, scale.getZ()*factor)
	heightMapModel.setScale(scale);
	heightMapModel.setAltitudeMode (ge.ALTITUDE_ABSOLUTE); 

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

	heightMapPlacemark.setGeometry(heightMapModel);
	
599
    initialized = true;
600 601 602 603
}

function setAircraftPositionAttitude(id, lat, lon, alt, roll, pitch, yaw)
{
LM's avatar
LM committed
604 605 606 607 608 609
	if (lastLat[id] == 0)
	{
		lastLat[id] = lat;
		lastLon[id] = lon;
	}
	
610 611
	if (id == currAircraft)
	{
LM's avatar
LM committed
612
		currFollowHeading = currFollowHeading*0.95+0.05*(((yaw/M_PI))*180.0);
613 614
		currLat = lat;
		currLon = lon;
615 616 617
		var trueGroundAlt = ge.getGlobe().getGroundAltitude(lat, lon);
		if (trueGroundAlt < alt)
		{
LM's avatar
LM committed
618
		  	currAlt = alt;
619 620 621
	    }
	    else
	    {
LM's avatar
LM committed
622
	     	currAlt = trueGroundAlt+0.1;
623
	    }
LM's avatar
LM committed
624 625 626 627 628 629
	}
	    
	// Interpolate between t-1 and t and set new states
	//lastLat[id] = lastLat[id]*0.5+lat*0.5;
	//lastLon[id] = lastLon[id]*0.5+lon*0.5;
	//lastAlt[id] = lastAlt[id]*0.5+alt*0.5;
630
	
LM's avatar
LM committed
631 632 633
	lastLat[id] = lastLat[id]*0.5+lat*0.5;
	lastLon[id] = lastLon[id]*0.5+lon*0.5;
	lastAlt[id] = lastAlt[id]*0.5+alt*0.5;
pixhawk's avatar
pixhawk committed
634
	
LM's avatar
LM committed
635 636 637 638
	attitudes[id].setRoll(+((roll/M_PI))*180.0);
	attitudes[id].setTilt(-((pitch/M_PI))*180.0);
	attitudes[id].setHeading(((yaw/M_PI))*180.0-90.0);
	aircraftModels[id].setOrientation(attitudes[id]);
639
    
LM's avatar
LM committed
640 641 642 643
    aircraftLocations[id].setLatitude(lastLat[id]);
    aircraftLocations[id].setLongitude(lastLon[id]);
    aircraftLocations[id].setAltitude(lastAlt[id]);
    aircraftModels[id].setLocation(aircraftLocations[id]);
pixhawk's avatar
pixhawk committed
644
    
LM's avatar
LM committed
645
    if (followEnabled && id == currAircraft) updateFollowAircraft();
pixhawk's avatar
pixhawk committed
646 647
}

648 649 650 651 652 653 654 655 656 657 658
function enableDaylight(enabled)
{
	if(enabled)
	{
		ge.getSun().setVisibility(true);
	}
	else
	{
		ge.getSun().setVisibility(false);
	}
}
659 660 661 662 663

function enableAtmosphere(enabled)
{
	ge.getOptions().setAtmosphereVisibility(enabled);
}
664
		
665 666 667 668 669 670 671 672 673
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
674
}
675 676 677 678 679 680

function setCurrentAircraft(id)
{
	currAircraft = id;
}

681 682
/** @brief Set the current view mode
 *
683
 * @param mode 0: side map view, 1: top/north map view, 2: fixed chase cam, 3: free chase cam
684 685 686
 */
function setViewMode(mode)
{
687
	var currView = ge.getView().copyAsLookAt(ge.ALTITUDE_RELATIVE_TO_GROUND);
688 689 690
	
	if (mode == 0)
	{
691 692
		currView.setTilt(lastTilt);
		currView.setHeading(lastHeading);
693
	}
lm's avatar
lm committed
694
	
695
	if (mode == 1 && viewMode != mode)
696 697 698 699 700 701 702
	{
		lastTilt = currView.getTilt();
		lastHeading = currView.getHeading();
		currView.setTilt(0);
		currView.setHeading(0);
	}
	
703 704
	viewMode = mode;
	
705
	ge.getView().setAbstractView(currView);
706 707
}

708 709 710
function updateFollowAircraft()
{
	currView = ge.getView().copyAsLookAt(ge.ALTITUDE_ABSOLUTE);
LM's avatar
LM committed
711 712
	currView.setLatitude(lastLat[currAircraft]);
	currView.setLongitude(lastLon[currAircraft]);
713 714 715
	
	if (distanceMode == 1)
	{
LM's avatar
LM committed
716
		var groundAltitude = ge.getGlobe().getGroundAltitude(lastLat[currAircraft], lastLon[currAircraft]);
717 718 719
		currView.setAltitude(groundAltitude);
	}
	
LM's avatar
LM committed
720
	if (distanceMode == 0) currView.setAltitude(lastAlt[currAircraft]);
721

722
	currView.setRange(currViewRange);
723 724 725
	
	if (viewMode != 3) // VIEW_MODE_CHASE_FREE
	{
726 727
		currView.setTilt(currFollowTilt);
		currView.setHeading(currFollowHeading);
728
	}
729
	ge.getView().setAbstractView(currView);
730 731 732 733 734 735 736 737
}

function failureCallback(object)
{
}
</script>


pixhawk's avatar
pixhawk committed
738 739 740 741 742 743 744 745 746 747 748 749
    <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>
750 751 752 753 754 755 756 757 758 759
	<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" />
760 761 762
	<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
763 764
  </body>
</html>