- Move the
maplibre_gl
package to a subdirectory of the repository and add melos to orchestrate all packages.
A lot of files/classes have been renamed and moved around in this release.
If you notice any build errors, please make sure to run flutter clean
.
- All Dart enums have been migrated from mixed cases to lower camelcase
according to the
camel_case_types
lint rule. - Move
MapLibreStyles
to the mainmaplibre_gl
package. You can now use the
demo style without addingmaplibre_gl_platform_interface
as a dependency. - Updated maplibre-native for ios to v6.5.0. This introduces the new iOS Metal renderer and the OpenGL ES renderer now uses OpenGL ES 3.0. Only iOS Devices with an Apple A7 GPU or later are supported onwards. See the maplibre-native changelog for more information.
- Updated maplibre-native for android to v11.0.0. This version uses OpenGL ES 3.0. See the maplibre-native changelog for more information.
- Renamed the method channel to
plugins.flutter.io/maplibre_gl_*
in all packages. - Renamed "Maplibre" to "MapLibre" to be in line with maplibre-native
(affects for example the classes
MaplibreMap
andMaplibreMapController
).
- Added support for Swift Package Manager usage on iOS.
- Migrated main iOS plugin class from Objective-C to Swift.
- Renamed iOS plugin classes from
Mapbox
toMapLibre
.
Full Changelog: v0.19.0+2...v0.20.0
This is the first version where all packages are published on pub.dev. Please
use the maplibre_gl
package directly from pub.dev from now on. Check the
README
documentation on how to include it in your project.
- Bump min Dart SDK to 3.0.0 (this was already implicitly required by transitive dependencies)
- Prepare all packages for publishing to pub.dev
- Add support for the Fill Extrusion layer
- Add support for the Heatmap layer
- Update documentation
- (android) Bump Android
compileSdkVersion
to 34 - (iOS) Add
iosLongClickDuration
as parameter to customize the long click duration. - (web) Loosen the dependency constraint of js to
allow
0.6.x
and0.7.x
.
- (android) Fix support for newer gradle versions (Add support for Gradle/AGP namespace configuration)
- (android) Fix
NullPointerException
when changing the visibility of a layer ( layer#setVisibility) - (android) Fix enum parsing for the
onCameraTracking
callback - (iOS) Fix tap detection on features if the feature id is null
- (web) Fix flickering when the style takes time to load
Full Changelog: 0.18.0...v0.19.0
Already since 0.17.0, developers do not need to adapt their Podfile for iOS apps anymore as it was previously described in the Readme. Developers who previously added these lines should remove them, since not removing these lines may cause a build failure on iOS. (This change actually already landed in 0.17.0, but it may not have been sufficiently clear that not removing these lines might break builds).
- new feature: set arbitrary layer properties by @m0nac0 in #303
- Update release process by @m0nac0 in #315
- Add workflows for automated publishing to pub.dev by @m0nac0 in #328
- Fix example app pubspec by @m0nac0 in #329
- Updated location plugin version for example app by @varunlohade in #334
- Housekeeping: Improve docs and update outdated references to point to MapLibre by @m0nac0 in #330
Full Changelog: 0.17.0...0.18.0
- Repository transfer: The project repository was transferred to the MapLibre GitHub organization. More information at #221
- Developers do not need to adapt their Podfile for iOS apps anymore as it was previously described in the Readme. #278
maplibre_gl/mapbox_gl.dart
was renamed tomaplibre_gl/maplibre_gl.dart
. You can do a replace-all fromimport 'package:maplibre_gl/mapbox_gl.dart';
toimport 'package:maplibre_gl/maplibre_gl.dart';
useDelayedDisposal
was removed since its now fixed in #259useHybridCompositionOverride
was removed since it was added in the following fix: #203 and we reverted the fix and used another approach to fix the actual issue.- The default for
myLocationRenderMode
was changed fromCOMPASS
toNORMAL
in #244, since the previous default value ofCOMPASS
implicitly enables displaying the location on iOS, which could crash apps that didn't want to display the device location. If you want to continue to useMyLocationRenderMode.COMPASS
, please explicitly specify it in the constructor like this:
@override
Widget build() {
return MapLibreMap(
myLocationRenderMode: MyLocationRenderMode.COMPASS,
// ...
);
}
- The old api
registerWith
was removed from the MapboxMapsPlugin.java, since there is no need for that. - The
minSdkVersion
was bumped to at least 21 now, since the native android sdk constraint expect that. - Changed the minimum Dart version from sdk:
2.12.0
to2.14.0
inmaplibre_gl_platform_interface/pubspec.yaml
.
Note: This list only contains a subset of all contributions, notably excluding those that e.g. only affect the GitHub Actions CI or documentation. See the link at the end for a full changelog.
- feat: add support for reading style json from file in ios by @TimAlber in #132
- Add podspecs in correct Cocoapods layout by @kuhnroyal in #128
- fix: fix the queryRenderedFeatures code on iOS by @TimAlber in #137
- feat: Set layer visibility by @m0nac0 in #138
- feat: add support for changing the receiver’s viewport to fit given bounds by @TimAlber in #133
- Change feature JSON encoding from .ascii to .utf8 by @SunBro-Marko in #142
- web: implement setCameraBounds by @m0nac0 in #145
- Use offical maplibre-gl.js and add README info by @Robbendebiene in #163
- android: adding tileSize to raster source by @mariusvn in #166
- Readme: document git default values for codespaces by @m0nac0 in #170
- query source features by @Grodien in #154
- Trimming styleString to simplify the JSON detection by @mariusvn in #175
- Fix getVisibleRegion method by @BartoszStasiurka in #179
- Reenable textureMode which was disabled in f8b2d1 by @maxammann in #194
- android: Bump MapLibre SDK to 9.6.0 & OkHttp to 4.9.3 by @mariusvn in #184
- Added getSourceIds to the controller by @mariusvn in #197
- Moved EventChannel creation in the downloadOfflineRegion method by @mariusvn in #205
- Fix crash android dispose nullpointerdereference by @GaelleJoubert in #203
- Migrate links in README, pubspec to MapLibre by @kuhnroyal in #224
- Update LICENSE file by @mariusvn in #230
- upgrade dependency image by @m0nac0 in #248
- fix-example-app by @JulianBissekkou in #261
- 162-animate-camera-on-web-fix by @JulianBissekkou in #254
- 243-fix-crash-when-no-location-permission by @JulianBissekkou in #244
- 182-disposal-null-ref-crash by @JulianBissekkou in #259
- New android sdk version by @stefanschaller in #270
- 250-change-language-fixes by @stefanschaller in #275
- upgrade-ios-version by @JulianBissekkou in #277
- Simplify iOS usage instructions and example podfile by @m0nac0 in #278
- Add opportunity to use map in widget tests by @ManoyloK in #281
- fix-layers-prod-build by @stefanschaller in #291
- Fix the codespace by upgrading the docker image by @ouvreboite in #297
- Add
updateImageSource
. by @CaviarChen in #271 - fix "unexpected null value" error when onStyleLoadedCallback is null by @m0nac0 in #307
- attributionButtonPosition for web by @ouvreboite in #304
Full Changelog: https://github.com/maplibre/flutter-maplibre-gl/compare/0.16.0...0.17.0
- cherry-picked all commits from upstream up to [https://github.com/flutter-mapbox-gl/maps/commit/3496907955cd4b442e4eb905d67e8d46692174f1), including up to release 0.16.0 from upstream
- updated MapLibre GL JS for web
- cherry-picked all commits from upstream up to upstream release 0.15.0
- improved documentation
- betted adapted the example app to MapLibre
- hide logo on Android/iOS to match web
- Fix bug when changing line color (see #448) by @vberthet in #15
- Remove unnecessary imports by @m0nac0 in #34
- Update example with Flutter 2.5.3 by @kuhnroyal in #35
- CI: Use separate scheduled pipeline for Flutter beta builds by @kuhnroyal in #28
- Null safety (cherry-pick from upstream) by @m0nac0 in #31
- [web] add missing removeLines, removeCircles and removeFills (cherry-pick tobrun#622) by @m0nac0 in #32
- Replace style string in local style example by @m0nac0 in #33
- [web] add getSymbolLatLng and getLineLatLngs by @m0nac0 in #37
- Remove access token, update libraries, replace example
styles #25 (also
see #21)
- The parameter
accessToken
of classMaplibreMap
was removed. If you want to continue using a tile provider that requires an API key, specify that key directly in the URL of the tile source ( see https://github.com/m0nac0/flutter-maplibre-gl#tile-sources-requiring-an-api-key) - The built-in constants for specific styles were also removed. You can continue using these styles by using the styles' URL
- The parameter
- Remove warning about missing access token on Android #22
- Example: use maplibre styles and add new demo style #23
- Add about button to example app #26
- various improvements to the CI
- fixed formatting for some files that were not correctly formatted
🎉 The first release of flutter-maplibre-gl with the complete transition to MapLibre libraries. 🎉
Further improvements:
- Update to MapLibre-Android-SDK 9.4.2
- Update to MapLibre-iOS-SDK 5.12.0
- Fix onUserLocationUpdated not firing on android #14
- Add speed to UserLocation #11
- Fix queryRenderedFeaturesInRect for iOS #10
- Batch creation/removal for circles, fills and lines #576
- Dependencies: updated image package #598
- Improve description to enable location features #596
- Fix feature manager on release build #593
- Emit onTap only for the feature above the others #589
- Add annotationOrder to web #588
- Fixed issues caused by new android API #544
- Add option to set maximum offline tile count #549
- Fixed web build failure due to http package upgrade #550
- Update OfflineRegion/OfflineRegionDefinition interfaces, synchronize with iOS and Android #545
- Fix Mapbox GL JS CSS embedding on web #551
- Update Podfile to fix iOS CI #565
- Update deprecated patterns to fix CI static analysis #568
- Add setOffline method on Android #537
- Add batch mode of screen locations #554
- Define which annotations consume the tap events #575
- Remove failed offline region downloads #583
- Merge offline regions #532
- Update offline region metadata #530
- Added web support for fills #501
- Support styleString as "Documents directory/Temporary directory" #520
- Use offline region ids #491
- Ability to define annotation layer order #523
- Clear fills API #527
- Add heading to UserLocation and expose UserLocation type #522
- Patch addFill with data parameter #524
- Fix style annotation is not deselected on iOS #512
- Update tracked camera position in camera#onIdle #500
- Fix iOS implementation of map#toLatLng on iOS #495
- Migrate to new Android flutter plugin architecture #488
- Update readme to fix UnsatisfiedLinkError #422
- Improved Image Source Support #469
- Avoid white space when resizing map on web #474
- Allow MapboxMap() to override Widget Key. #475
- Offline region feature #336
- Fix iOS symbol tapped interaction #443
- Fix data parameter for addLine and addCircle #388
- Re-enable attribution on Android #383
- Upgrade annotation plugin to v0.9 #381
- Breaking change: CameraUpdate.newLatLngBounds() now supports setting different padding values for left, top, right, bottom with default of 0 for all. Implementations using the old approach with only one padding value for all edges have to be updated. #382
- web:ignore myLocationTrackingMode if myLocationEnabled is false #363
- Add methods to access projection #380
- Add fill API support for Android and iOS #49
- Listen to OnUserLocationUpdated to provide user location to app #237
- Correct integration in Activity lifecycle on Android #266
- Add support for custom font stackn in symbol options #359
- Fix memory leak on iOS caused by strong self reference #370
- Basic ImageSource Support #409
- Get meters per pixel at latitude #416
- Fix onStyleLoadedCallback #418
- implementation of feature querying #177
- Batch create/delete of symbols #279
- Add multi map support #315
- Fix OnCameraIdle not being invoked #313
- Fix android zIndex symbol option #312
- Set dependencies from git #319
- Add line#getGeometry and symbol#getGeometry #281
- Introduction of mapbox_gl_platform_interface library
- Introduction of mapbox_gl_web library
- Integrate web support through mapbox-gl-js
- Add icon-allow-overlap configurations
- Update mapbox depdendency to 9.2.0 (android) and 5.6.0 (iOS)
- Long press handlers for both iOS as Android
- Change default location tracking to none
- OnCameraIdle listener support
- Add image to style
- Add animation duration to animateCamera
- Content insets
- Visible region support on iOS
- Numerous bug fixes
- iOS support for annotation extensions (circle, symbol, line)
- Update SDK to 8.5.0 (Android) and 5.5.0 (iOS)
- Integrate style loaded callback api
- Add Map click event (iOS)
- Cache management API (Android/iOS)
- Various fixes to showing user location and configurations (Android/iOS)
- Last location API (Android)
- Throttle max FPS of user location component (Android)
- Fix for handling permission handling of the test application (Android)
- Support for loading symbol images from assets (iOS/Android)
- Update SDK to 8.4.0 (Android) and 5.4.0 (iOS)
- Add support for sideloading offline maps (Android/iOS)
- Add user tracking mode (iOS)
- Invert compassView.isHidden logic (iOS)
- Specific swift version (iOS)
- Camera API (iOS)
- Line API (Android)
- Update codebase to AndroidX
- Update Mapbox Maps SDK for Android to v7.3.0
- Support for iOS
- Migration to embedded Android and iOS SDK View system
- Style URL API
- Style JSON API (Android)
- Gesture support
- Gesture restrictions (Android)
- Symbol API (Android)
- Location component (Android)
- Camera API (Android)
- Initial Android surface rendering POC