1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2024-11-29 07:24:13 +01:00

Display the altitude waypoint

This commit is contained in:
Dmytro Poplavskiy 2013-11-09 11:13:23 +10:00 committed by Alessio Morale
parent 071f81370a
commit 40629f62db

View File

@ -50,6 +50,18 @@ Item {
}
}
}
SvgElementImage {
id: altitude_waypoint
elementName: "altitude-waypoint"
sceneSize: sceneItem.sceneSize
visible: PathDesired.End_Down !== 0.0
anchors.left: parent.left
anchors.verticalCenter: parent.verticalCenter
anchors.verticalCenterOffset: -altitude_scale.height/30 * (PositionState.Down - PathDesired.End_Down)
}
}
SvgElementImage {