Show vertical rate indicators next to altitude.
This commit is contained in:
parent
ba8a8935be
commit
09c50fff4d
2 changed files with 30 additions and 8 deletions
public_html
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue