Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
mapbox-gl-qml
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian On Mobile
puremaps
mapbox-gl-qml
Commits
b6be296e
Unverified
Commit
b6be296e
authored
6 years ago
by
rinigus
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #38 from jdrescher2006/master
Added onRelease signal for MapboxMapGestureArea.
parents
18a5d064
ffd6508c
No related branches found
Branches containing commit
Tags
1.3.3
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/plugin/MapboxMapGestureArea.qml
+5
-1
5 additions, 1 deletion
src/plugin/MapboxMapGestureArea.qml
with
5 additions
and
1 deletion
src/plugin/MapboxMapGestureArea.qml
+
5
−
1
View file @
b6be296e
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment