MapView Qt 6.5
-
Hello,
I need simple app with MapView I try do this:Window{ id: root width: 960 height: 640 Plugin { id: mapPlugin name: "osm" } MapView{ anchors.fill: parent Map{ id: myMap anchors.fill: parent plugin: mapPlugin center: QtPositioning.coordinate(0.0, 0.0) zoomLevel: 10 } } }
App starts but I can't change position. Do you know how can I solve that or you can paste valid code how can I use MapView?