Skip to content
Snippets Groups Projects
Unverified Commit b6be296e authored by rinigus's avatar rinigus Committed by GitHub
Browse files

Merge pull request #38 from jdrescher2006/master

Added onRelease signal for MapboxMapGestureArea.
parents 18a5d064 ffd6508c
No related branches found
Tags 1.3.3
No related merge requests found
......@@ -40,6 +40,9 @@ Item {
/// emitted on pressAndHold event with geographical coordinates
signal pressAndHoldGeo(var geocoordinate, real degLatPerPixel, real degLonPerPixel);
/// emitted on released event
signal released(var mouse);
////////////////////////////////////////////////
/// Implementation details
......@@ -118,7 +121,8 @@ Item {
//! When released, indicate that touching has finished
onReleased: {
__isTouching = false
__isTouching = false;
mpbxGestureArea.released(mouse);
}
//! Move the map when panning
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment