is it possible to create a 3D polyline over a QML Map?

223 views Asked by At

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 ?

0

There are 0 answers