df7e13d734
Still evolving but usable to import or build a route now
28 lines
440 B
QML
28 lines
440 B
QML
import QtQuick 2.4
|
|
import FlightGear 1.0
|
|
import FlightGear.Launcher 1.0
|
|
import "."
|
|
|
|
Item {
|
|
id: root
|
|
property alias location: airportData.guid
|
|
|
|
Positioned {
|
|
id: airportData
|
|
}
|
|
|
|
|
|
AirportDiagram {
|
|
id: diagram
|
|
anchors.fill: parent
|
|
airport: airportData.guid
|
|
|
|
onClicked: {
|
|
if (pos === null)
|
|
return;
|
|
}
|
|
|
|
approachExtensionEnabled: false
|
|
}
|
|
|
|
}
|