0

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 ?

Tony_V
  • 37
  • 7
  • 1
    not available out of the box – Pa_ Dec 27 '20 at 20:11
  • Hi @Pa_ would you know about any addendums that would make what I want to do possible ? – Tony_V Dec 28 '20 at 06:25
  • 1
    not to the best of my knowledge. I think it's possible, but it needs to be implemented. And also, what would you expect to see? a 3d thin line extrusion? shaded? Polylines in QtLocation are, as of today, two-dimensional and unshaded. – Pa_ Dec 30 '20 at 16:22

0 Answers0