You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/publish-single.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ jobs:
19
19
runs-on: ubuntu-latest
20
20
if: github.repository_owner == 'maplibre'
21
21
steps:
22
-
- uses: actions/checkout@v4
22
+
- uses: actions/checkout@v5
23
23
- uses: dart-lang/setup-dart@v1
24
24
# --force skips the y/N confirmation
25
25
# --skip-validation because of "Because maplibre_gl requires the Flutter SDK, version solving failed. Flutter users should use `flutter pub` instead of `dart pub`."
Copy file name to clipboardExpand all lines: maplibre_gl/CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,14 @@
1
+
## UNRELEASED
2
+
3
+
### Breaking changes
4
+
*`annotation` argument now replaces the previous `id` argument in the onFeatureDrag and onFeatureTapped callbacks. Existing implementations must be updated to use the new annotation parameter.
5
+
6
+
### Changed
7
+
* Added `onFeatureHover` to the controller for listening to hover interactions.
8
+
* Fixed: annotationConsumeTapEvents previously had no effect. This has been fixed, and it now properly controls whether tap events on annotations are consumed.
9
+
* Fixed: Avoided calling notifyListeners() on a disposed controller.
10
+
* Fixed: Internal event listeners wasn't properly removed/off in web.
0 commit comments