MapGestureArea QML Type

MapGestureArea type provides Map gesture interaction. 更多...

导入语句: import QtLocation 5.3
Since: Qt Location 5.0

特性

信号

详细描述

MapGestureArea objects are used as part of a Map, to provide for panning, flicking and pinch-to-zoom gesture used on touch displays, as well as two finger rotation and two finger parallel vertical sliding to tilt the map.

A MapGestureArea is automatically created with a new Map and available with the gesture property. This is the only way to create a MapGestureArea , and once created this way cannot be destroyed without its parent Map.

The two most commonly used properties of the MapGestureArea are the enabled and acceptedGestures properties. Both of these must be set before a MapGestureArea will have any effect upon interaction with the Map. The flickDeceleration property controls how quickly the map pan slows after contact is released while panning the map.

性能

MapGestureArea , when enabled, must process all incoming touch events in order to track the shape and size of the "pinch". The overhead added on touch events can be considered constant time.

用法范例

The following example enables the pinch and pan gestures on the map, but not flicking. So the map scrolling will halt immediately on releasing the mouse button / touch.

Map {
    gesture.enabled: true
    gesture.acceptedGestures: MapGestureArea.PinchGesture | MapGestureArea.PanGesture
}
					

特性文档编制

acceptedGestures : enumeration

This property holds the gestures that will be active. By default all gestures are enabled.


enabled : bool

This property holds whether the gestures are enabled.


flickDeceleration : real

This property holds the rate at which a flick will decelerate.

The default value is 2500.


maximumZoomLevelChange : real

This property holds the maximum zoom level change per pinch, essentially meant to be used for setting the zoom sensitivity.

It is an indicative measure calculated from the dimensions of the map area, roughly corresponding how much zoom level could change with maximum pinch zoom. Default value is 4.0, maximum value is 10.0


panActive : bool

This read-only property holds whether the pan gesture is active.

注意: Change notifications for this property were introduced in Qt 5.5.


pinchActive : bool

This read-only property holds whether the pinch gesture is active.


preventStealing : bool

This property holds whether the mouse events may be stolen from this MapGestureArea .

If a Map is placed within an item that filters child mouse and touch events, such as Flickable, the mouse and touch events may be stolen from the MapGestureArea if a gesture is recognized by the parent item, e.g. a flick gesture. If preventStealing is set to true, no item will steal the mouse and touch events.

Note that setting preventStealing to true once an item has started stealing events will have no effect until the next press event.

By default this property is false.


rotationActive : bool

This read-only property holds whether the two-finger rotation gesture is active.

This QML property was introduced in Qt Location 5.9.


tiltActive : bool

This read-only property holds whether the two-finger tilt gesture is active.

This QML property was introduced in Qt Location 5.9.


信号文档编制

flickFinished ()

This signal is emitted when the map stops moving due to a flick.

相应处理程序是 onFlickFinished .


flickStarted ()

This signal is emitted when the map is flicked. A flick starts from the point where the mouse or touch was released, while still in motion.

相应处理程序是 onFlichStarted .


panFinished ()

This signal is emitted when the map stops moving due to user interaction. If a flick was generated, this signal is emitted before flick starts. If a flick was not generated, this signal is emitted when the user stops dragging - that is a mouse or touch release.

相应处理程序是 onPanFinished .


panStarted ()

This signal is emitted when the map begins to move due to user interaction. Typically this means that the user is dragging a finger - or a mouse with one of more mouse buttons pressed - on the map.

相应处理程序是 onPanStarted .


pinchFinished ( PinchEvent event )

This signal is emitted at the end of a pinch gesture.

相应处理程序是 onPinchFinished .

另请参阅 pinchStarted and pinchUpdated .


pinchStarted ( PinchEvent event )

This signal is emitted when a pinch gesture is started.

相应处理程序是 onPinchStarted .

另请参阅 pinchUpdated and pinchFinished .


pinchUpdated ( PinchEvent event )

This signal is emitted as the user's fingers move across the map, after the pinchStarted 信号被发射。

相应处理程序是 onPinchUpdated .

另请参阅 pinchStarted and pinchFinished .


rotationFinished ( PinchEvent event )

This signal is emitted at the end of a two-finger rotation gesture.

相应处理程序是 onRotationFinished .

This QML signal was introduced in Qt Location 5.9.

另请参阅 rotationStarted and rotationUpdated .


rotationStarted ( PinchEvent event )

This signal is emitted when a two-finger rotation gesture is started.

相应处理程序是 onRotationStarted .

This QML signal was introduced in Qt Location 5.9.

另请参阅 rotationUpdated and rotationFinished .


rotationUpdated ( PinchEvent event )

This signal is emitted as the user's fingers move across the map, after the rotationStarted 信号被发射。

相应处理程序是 onRotationUpdated .

This QML signal was introduced in Qt Location 5.9.

另请参阅 rotationStarted and rotationFinished .


tiltFinished ( PinchEvent event )

This signal is emitted at the end of a two-finger tilt gesture.

相应处理程序是 onTiltFinished .

This QML signal was introduced in Qt Location 5.9.

另请参阅 tiltStarted and tiltUpdated .


tiltStarted ( PinchEvent event )

This signal is emitted when a two-finger tilt gesture is started.

相应处理程序是 onTiltStarted .

This QML signal was introduced in Qt Location 5.9.

另请参阅 tiltUpdated and tiltFinished .


tiltUpdated ( PinchEvent event )

This signal is emitted as the user's fingers move across the map, after the tiltStarted 信号被发射。

相应处理程序是 onTiltUpdated .

This QML signal was introduced in Qt Location 5.9.

另请参阅 tiltStarted and tiltFinished .