I want to achieve self-draggable MapQuickItem
. Simple example:
MapQuickItem { id: markerItem sourceItem: Rectangle { id: sourceRect color: "red" width: 20 height: 20 x: 0 y: 0 MouseArea { drag.target: markerItem cursorShape: drag.active ? Qt.ClosedHandCursor : Qt.OpenHandCursor anchors.fill: parent } } Drag.active: true}
The point is, if I drag fast, dragging is interrupted as soon as cursor leaves marker. Is there a way to make it work properly?