@nativescript-community/ui-mapbox 6.2.11 → 6.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/index.ios.js +6 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [6.2.12](https://github.com/nativescript-community/ui-mapbox/compare/v6.2.11...v6.2.12) (2022-01-17)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @nativescript-community/ui-mapbox
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [6.2.11](https://github.com/nativescript-community/ui-mapbox/compare/v6.2.10...v6.2.11) (2022-01-09)
|
|
7
15
|
|
|
8
16
|
|
package/index.ios.js
CHANGED
|
@@ -1669,6 +1669,12 @@ export class Mapbox extends MapboxCommon {
|
|
|
1669
1669
|
}
|
|
1670
1670
|
theMap['mapTapHandler'] = MapTapHandlerImpl.initWithOwnerAndListenerForMap(new WeakRef(this), listener, theMap);
|
|
1671
1671
|
const tapGestureRecognizer = UITapGestureRecognizer.alloc().initWithTargetAction(theMap['mapTapHandler'], 'tap');
|
|
1672
|
+
for (let i = 0; i < theMap.gestureRecognizers.count; i++) {
|
|
1673
|
+
const recognizer = theMap.gestureRecognizers.objectAtIndex(i);
|
|
1674
|
+
if (recognizer instanceof UITapGestureRecognizer) {
|
|
1675
|
+
tapGestureRecognizer.requireGestureRecognizerToFail(recognizer);
|
|
1676
|
+
}
|
|
1677
|
+
}
|
|
1672
1678
|
theMap.addGestureRecognizer(tapGestureRecognizer);
|
|
1673
1679
|
resolve();
|
|
1674
1680
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nativescript-community/ui-mapbox",
|
|
3
|
-
"version": "6.2.
|
|
3
|
+
"version": "6.2.12",
|
|
4
4
|
"description": "Interactive, thoroughly customizable maps powered by vector tiles and OpenGL.",
|
|
5
5
|
"main": "index",
|
|
6
6
|
"typings": "index.d.ts",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@nativescript-community/perms": "^2.2.0"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "44fe8fec4a1d5ddfcd529919346f238afecabc94"
|
|
58
58
|
}
|