The provided minimal map example
    Map {
        id: map
        anchors.fill: parent
        plugin: mapPlugin
        center: QtPositioning.coordinate(59.91, 10.75) // Oslo
        zoomLevel: 14
        property geoCoordinate startCentroid
        PinchHandler {
            id: pinch
            target: null
            onActiveChanged: if (active) {
                map.startCentroid = map.toCoordinate(pinch.centroid.position, false)
            }
            onScaleChanged: (delta) => {
                map.zoomLevel += Math.log2(delta)
                map.alignCoordinateToPoint(map.startCentroid, pinch.centroid.position)
            }
            onRotationChanged: (delta) => {
                map.bearing -= delta
                map.alignCoordinateToPoint(map.startCentroid, pinch.centroid.position)
            }
            grabPermissions: PointerHandler.TakeOverForbidden
        }
        WheelHandler {
            id: wheel
            rotationScale: 1/120
            property: "zoomLevel"
        }
        DragHandler {
            id: drag
            target: null
            onTranslationChanged: (delta) => map.pan(-delta.x, -delta.y)
        }
        Shortcut {
            enabled: map.zoomLevel < map.maximumZoomLevel
            sequence: StandardKey.ZoomIn
            onActivated: map.zoomLevel = Math.round(map.zoomLevel + 1)
        }
        Shortcut {
            enabled: map.zoomLevel > map.minimumZoomLevel
            sequence: StandardKey.ZoomOut
            onActivated: map.zoomLevel = Math.round(map.zoomLevel - 1)
        }
    }
has a non working wheel handler.
- relates to
- 
                    QTBUG-87646 WheelHandler doesn't work correctly with TouchPad -         
- Closed
 
-         
- resulted from
- 
                    QTBUG-112432 wayland plugin should distinguish touchpads from mice, etc. -         
- Reported
 
-         
| For Gerrit Dashboard: QTBUG-112394 | ||||||
|---|---|---|---|---|---|---|
| # | Subject | Branch | Project | Status | CR | V | 
| 466184,6 | MapView: add bearing / tilt wheel functionality; also with Magic Mouse | dev | qt/qtlocation | Status: MERGED | +2 | 0 | 
| 469859,3 | Allow zoom/pan/tilt with mouse on Wayland | dev | qt/qtlocation | Status: MERGED | +2 | 0 | 
| 471230,2 | MapView: add bearing / tilt wheel functionality; also with Magic Mouse | 6.5 | qt/qtlocation | Status: MERGED | +2 | 0 | 
| 471231,2 | Allow zoom/pan/tilt with mouse on Wayland | 6.5 | qt/qtlocation | Status: MERGED | +2 | 0 |