I am trying to plot the flight trajectory of an airplane using QML maps.
Map {
[...]
MapPolyline {
[...]
path: [
{ latitude: ..., longitude: ..., altitude: 0},
.
.
.
.
{ latitude: ..., longitude: ..., altitude: 10000 }
]
}
}
Unfortunately the plotted line is flat (2D) and does not show the change in elevation.
Is it possible to plot a polyline over QML maps in 3D ?