Show vertical rate indicators next to altitude.

This commit is contained in:
Oliver Jowett 2015-01-22 16:09:19 +00:00
parent ba8a8935be
commit 09c50fff4d
2 changed files with 30 additions and 8 deletions
public_html

View file

@ -225,6 +225,8 @@ PlaneObject.prototype.updateData = function(receiver_timestamp, data) {
if (typeof data.altitude !== "undefined")
this.altitude = data.altitude;
if (typeof data.vert_rate !== "undefined")
this.vert_rate = data.vert_rate;
if (typeof data.speed !== "undefined")
this.speed = data.speed;
if (typeof data.track !== "undefined")