Important
Configuring Mapbox's secret token is no longer required when installing our SDKs.
- Fix annotation click listeners not working.
- Update Maps SDK to 11.8.0
- Updated the minimum required Flutter SDK to version 3.22.3 and Dart to version 3.4.4. With the fix for Virtual Display hosting mode on Android in Flutter 3.22, we’ve changed the default map view hosting mode to Virtual Display composition. This update should eliminate the brief visibility of the map after it has been dismissed.
- Introduce experimental property
MapboxMap.styleGlyphURL
. Use this property to apply custom fonts to the map at runtime, without modifying the base style. - Expose current map's camera state on
CameraChanged
event. #704
You can now observe the map's camera updates with onCameraChangeListener
onCameraChangeListener(CameraChangedEventData data) {
print("CameraChangedEventData: timestamp: ${data.timestamp}, cameraState: ${data.cameraState}");
}
- Print to console native Maps SDK logs in debug configuration. #710
Logs are proxied only in debug configuration and can be disabled completely by passing environment flag
MAPBOX_LOG_DEBUG
with false value. - Fix rare crash in
Snapshotter
. The crash could happen when creating/destroying multiple instances ofSnapshotter
in succession. #728 - Fix a crash that occurs when the widget state is updated before the platform view is created. #724
- Fix a crash in Snapshotter when GlyphsRasterizationMode is specified in MapSnapshotOptions. #738
- Remove
ProxyBinaryMessenger
, instead setup channel with amessageChannelSuffix
. #715.
- Deprecate untyped default constructor of
RenderedQueryGeometry
with typed constructors:RenderedQueryGeometry.fromList()/fromScreenBox()/fromScreenCoordinate()
.
This change improves type safety and clarity in the code. By using specific constructors, you can ensure that the RenderedQueryGeometry
is created with the correct type of data, reducing the risk of runtime errors and making the code easier to understand and maintain.
Example:
Before:
// Using the untyped default constructor
final geometry = RenderedQueryGeometry(type: Type.SCREEN_COORDINATE, value jsonEncode(screenCoordinate.encode()));
After:
// Using a typed constructor
final geometry = RenderedQueryGeometry.fromScreenCoordinate(screenCoordinate);
- Expose API to clear map data, and to set options to
TileStore
.
You can now clear temporary map data from the data path defined in the given resource options, which is useful when you want reduce the disk usage or in case the disk cache contains invalid data.
await MapboxMapsOptions.clearData();
And you can now set additional options to a TileStore
, for example, a maximum amount of bytes TileStore can use to store files., base URL to use for requests to the Mapbox API, or URL template for making tile requests.
// Set the disk quota to zero, so that tile regions are fully evicted
// when removed.
// This removes the tiles from the predictive cache.
tileStore.setDiskQuota(0);
- Add support for partial GeoJSON updates.
Instead of setting a whole new GeoJSON object anew every time a single feature has changed, now you can apply more granular, partial GeoJSON updates.
If your features have associated identifiers - you can add, update, and remove them on individual basis in your GeoJSONSource
. This is especially beneficial for GeoJSONSource
s hosting a large amount of features - in this case adding a feature can be up to 4x faster with the partial GeoJSON update API.
mapboxMap.style.addGeoJSONSourceFeatures(sourceId, dataId, features)
mapboxMap.style.updateGeoJSONSourceFeatures(sourceId, dataId, features)
mapboxMap.style.removeGeoJSONSourceFeatures(sourceId, dataId, featureIds)
- Fix
StyleManager.getLayer()
failing forModelLayer
,RasterParticleLayer
andSlotLayer
. - Expose data-driven properties on annotation managers. Now it's possible to set data-driven properties globally on annotation manager and specify per-annotation overrides. Previously user had to specify those properties on each annotation and couldn't specify them globally.
In this case each even annotation will have random color, but others will use the global default specified in the annotation manager.
final circleAnnotationManager = await mapboxMap.annotations.createCircleAnnotationManager();
var annotations = <CircleAnnotationOptions>[];
for (var i = 0; i < 2000; i++){
var annotation = CircleAnnotationOptions(
geometry: createRandomPoint(),
circleColor: (i % 2 == 0) ? createRandomColor() : null,
);
annotations.add(annotation);
}
circleAnnotationManager.setCircleColor(Colors.blue.value);
- Expose
autoMaxZoom
property forGeoJsonSource
to fix rendering issues withFillExtrusionLayer
in some cases. - Expose experimental
ClipLayer
to remove 3D data (fill extrusions, landmarks, trees) and symbols. - Deprecate
SlotLayer.sourceId
andSlotLayer.sourceLayer
as they have no effect in this layer. - Expose experimental
SymbolLayer.symbolElevationReference
andSymbolLayer.symbolZOffset
. - Add missing
@experimental
annotations toLayer
'sExpression
properties. - Remove experimental
model-front-cutoff
property fromModelLayer
. - Expose experimental
lineTrimColor
andlineTrimFadeRange
onLineLayer
which allow to set custom color for trimmed line and fade effect for trim. - Add experimental
FillExtrusionLayer.fillExtrusionLineWidth
that can switch fill extrusion rendering into wall rendering mode. Use this property to render the feature with the given width over the outlines of the geometry. - Add experimental
MapboxMap.setSnapshotLegacyMode()
to help avoidingMapboxMap.snapshot()
native crash on some Samsung devices running Android 14.MapboxMap.setSnapshotLegacyMode()
has no effect on iOS. - Fix build errors when using Flutter SDK 3.24.
- Add
GestureState
toMapContentGestureContext
to indicate whether gesture has been started, its touches have changed or it has ended. - Bump Maps SDK to 11.7.0.
- Bump Maps SDK to 11.6.0
- Update Pigeon to
21.1.0
- Expose
MapboxStyles.STANDARD_SATELLITE
style. MapDebugOptions
is superseded byMapWidgetDebugOptions
, expanding existing debug options with the newlight
,camera
, andpadding
debug options in addition to the new Android-specific options:layers2DWireframe
andlayers3DWireframe
.- Bump Maps SDK to 11.6.0-rc.1
- Support local assets for 3D puck and
ModelLayer
. To use a local assets, please specify it withasset://
scheme in the uri. - Fix map view crashing upon host activity destruction when using a cached Flutter engine.
- Fix a rare crash happening when map widget is being disposed.
- Add ModelLayer API.
- Support for offline map, allowing users to download and store map data on their devices for use in environments with limited or no internet connectivity.
- Layer expressions support. Specify expressions when constructing a layer with all new expression support for layers. Before:
mapboxMap.style.setStyleLayerProperty("layer", "line-gradient",
'["interpolate",["linear"],["line-progress"],0.0,["rgb",255,0,0],0.4,["rgb",0,255,0],1.0,["rgb",0,0,255]]');
After:
LineLayer(
...
lineGradientExpression: [
"interpolate",
["linear"],
["line-progress"],
0.0,
["rgb", 255, 0, 0],
0.4,
["rgb", 0, 255, 0],
1.0,
["rgb", 0, 0, 255]
],
);
- Expose
text-occlusion-opacity
,icon-occlusion-opacity
,line-occlusion-opacity
,model-front-cutoff
,lineZOffset
as experimental. - Add min/max/default values for most of the style properties.
- Expose
clusterMinPoints
property forGeoJSONSource
. - Expose
SlotLayer
andRasterParticleLayer
. - Expose
LocationComponentSettings.slot
. - Add
@experimental
annotation to relevant APIs. - Expose
LineJoin.NONE
. - Bump Maps SDK to 11.5.0 for Android and 11.5.1 for iOS.
- Bump Maps SDK to 11.5.0-rc.1
- Expose
text-occlusion-opacity
,icon-occlusion-opacity
,line-occlusion-opacity
,model-front-cutoff
,lineZOffset
as experimental. - Add min/max/default values for most of the style properties.
- Expose
clusterMinPoints
property forGeoJSONSource
. - Expose
SlotLayer
andRasterParticleLayer
. - Expose
LocationComponentSettings.slot
. - Add
@experimental
annotation to relevant APIs.
- Add ModelLayer API.
- Support for offline map, allowing users to download and store map data on their devices for use in environments with limited or no internet connectivity.
- Layer expressions support. Specify expressions when constructing a layer with all new expression support for layers. Before:
mapboxMap.style.setStyleLayerProperty("layer", "line-gradient",
'["interpolate",["linear"],["line-progress"],0.0,["rgb",255,0,0],0.4,["rgb",0,255,0],1.0,["rgb",0,0,255]]');
After:
LineLayer(
...
lineGradientExpression: [
"interpolate",
["linear"],
["line-progress"],
0.0,
["rgb", 255, 0, 0],
0.4,
["rgb", 0, 255, 0],
1.0,
["rgb", 0, 0, 255]
],
);
- Bump Maps SDK to 11.5.0-beta.1
Leveraging Turf's geometries as a replacement for Map<String, Any?>
You now have the convenience of directly initializing annotations with Turf's geometries, eliminating the need for converting geometry to JSON.
Geographical positions denoted by Map<String?, Object?>?
are migrated to Point
type from turf package.
Pass Point
s directly instead of converting them to JSON.
Before:
CameraOptions(
center: Point(
coordinates: Position(
-0.11968,
51.50325,
)).toJson())
After:
CameraOptions(
center: Point(
coordinates: Position(
-0.11968,
51.50325,
)))
MapWidget
's onTapListener
/onLongTapListener
/onScrollListener
now receive MapContentGestureContext
containing both touch position of the gesture, as well as the projected map coordinate corresponding to the touch position.
Before:
onTapListener: { (coordinate)
final lat = coordinate.x;
final lng = coordinate.y;
...
}
After:
onTapListener: { (context)
final coordinates = context.point.coordinates; // Position
final touchPosition = context.touchPosition; // ScreenCoordinate
...
}
Before:
PointAnnotationOptions(
geometry: Point(
coordinates: Position(0.381457, 6.687337)
).toJson()
)
PolygonAnnotationOptions(
geometry: Polygon(coordinates: [
[
Position(-3.363937, -10.733102),
Position(1.754703, -19.716317),
Position(-15.747196, -21.085074),
Position(-3.363937, -10.733102)
]
]).toJson()
)
PolylineAnnotationOptions(
geometry: LineString(coordinates: [
Position(1.0, 2.0),
Position(10.0, 20.0)
]).toJson()
)
After:
PointAnnotationOptions(
geometry: Point(
coordinates: Position(0.381457, 6.687337)
)
)
PolygonAnnotationOptions(
geometry: Polygon(coordinates: [
[
Position(-3.363937, -10.733102),
Position(1.754703, -19.716317),
Position(-15.747196, -21.085074),
Position(-3.363937, -10.733102)
]
])
)
PolylineAnnotationOptions(
geometry: LineString(coordinates: [
Position(1.0, 2.0),
Position(10.0, 20.0)
])
)
Show multiple maps at the same time with no performance penalty. With the all new Snapshotter
you can get image snapshots of the map, styled the same way as MapWidget
.
The Snapshotter
class is highly configurable. You can set the final result at the time of construction using the MapSnapshotOptions
. Once you've configured your snapshot, you can start the snapshotting process.
One of the key features of the Snapshotter
class is the style
object. This object can be manipulated to set different styles for your snapshot, as well as to apply runtime styling to the style, giving you the flexibility to create a snapshot that fits your needs.
final snapshotter = await Snapshotter.create(
options: MapSnapshotOptions(
size: Size(width: 400, height: 400),
pixelRatio: MediaQuery.of(context).devicePixelRatio),
onStyleLoadedListener: (_) {
// apply runtime styling
final layer = CircleLayer(id: "circle-layer", sourceId: "poi-source");
snapshotter?.style.addLayer(layer);
},
);
snapshotter.style.setStyleURI(MapboxStyles.STANDARD);
snapshotter.setCamera(CameraOptions(center: Point(...)));
...
final snapshotImage = await snapshotter.start()
Create snapshots of the map displayed in the MapWidget
with MapboxMap.snapshot()
. This new feature allows you to capture a static image of the current map view.
The snapshot()
method captures the current state of the Mapbox map, including all visible layers, markers, and user interactions.
To use the snapshot() method, simply call it on your Mapbox map instance. The method will return a Future that resolves to the image of the current map view.
final snapshotImage = await mapboxMap.snapshot();
Please note that the snapshot()
method works best if the Mapbox Map is fully loaded before capturing an image. If the map is not fully loaded, the method might return a blank image.
- Fix camera center not applied from map init options.
- [iOS] Free up resources upon map widget disposal. This should help to reduce the amount of used memory when previously shown map widget is removed from the widget tree.
- Fix multi-word enum cases decoding/encoding when being sent to/from the platform side.
- [Android] Add Gradle 8 compatibility.
- Introduce experimental
RasterArraySource
, note thatrasterLayers
is a get-only property and cannot be set. - Introduce
TileCacheBudget
, a property to set per-source cache budgets in either megabytes or tiles. - Expose
iconColorSaturation
,rasterArrayBand
,rasterElevation
,rasterEmissiveStrength
,hillshadeEmissiveStrength
, andfillExtrusionEmissiveStrength
on their respective layers. - Mark
MapboxMapsOptions.get/setWorldview()
andMapboxMapsOptions.get/setLanguage()
as experimental. - Bump Pigeon to 17.1.2
- [iOS] Fix crash in
onStyleImageMissingListener
. - Deprecate
cameraForCoordinates
, please usecameraForCoordinatesPadding
instead. - Add a way to disable default puck's image(s) when using
DefaultLocationPuck2D
. By passing an empty byte array, for example, the following code shows a puck 2D with custom top image, default bearing image and no shadow image.
mapboxMap?.location.updateSettings(LocationComponentSettings(
enabled: true,
puckBearingEnabled: true,
locationPuck:
LocationPuck(locationPuck2D: DefaultLocationPuck2D(topImage: list, shadowImage: Uint8List.fromList([]))))
);
- Update Maps SDK to 11.4.0.
- [Android] Fix
maps-lifecycle
plugin crash withjava.lang.IllegalStateException: Please ensure that the hosting activity/fragment is a valid LifecycleOwner
. - Mark
MapboxMapsOptions.get/setWorldview()
andMapboxMapsOptions.get/setLanguage()
as experimental. - Update Maps SDK to 11.3.0.
- Add
MapboxMapsOptions.get/setWorldview()
andMapboxMapsOptions.get/setLanguage()
. Use this to to adjust administrative boundaries/map language based on the map's audience. Read more about Mapbox worldviews and language support. - Add a way to specify custom id for annotation manager(and subsequently its backing layer's and source's ids).
- Add
below
parameter tocreateAnnotationManager()
, use this to control the position of the annotation layer in relation to other style layers. - Add
DefaultLocationPuck2D
type interchangeable withLocationPuck2D
that allows customization of the default location indicator appearance. - Add
_AnnotationManager.removeAnnotationManagerById()
allowing to remove annotation manager by its id, without having to store a reference to the manager. - Fix point annotation image disappearing after update on iOS.
- Bump Pigeon to v16.0.0.
- Updater minimum Flutter SDK version to 3.10.0 and above.
- Update minumum Dart SDK version to 3.0.0 and above.
- Convert
MapboxMapsOptions.setBaseUrl()
,MapboxMapsOptions.getDataPath()
,MapboxMapsOptions.setDataPath()
,MapboxMapsOptions.getAssetPath()
,MapboxMapsOptions.setAssetPath()
,MapboxMapsOptions.getTileStoreUsageMode()
andMapboxMapsOptions.setTileStoreUsageMode()
to static methods. - Fix 2D puck's opacity not being respected on iOS.
- Make
padding
parameter optional inMapboxMap.cameraForCoordinateBounds()
andMapboxMap.cameraForCoordinates()
. - Fix initial camera options passed to
MapWidget
not being applied on Android. - Add an example representing a traffic route with color based on traffic volumes using LineLayer and Expression.
- [Android] Fix MapOptions incorrect index access at map creation, leading to map not being created(blank view).
- [Android] Use hybrid composition(HC) as the default platform view hosting mode on Android.
- [Android] Add experimental
androidHostingMode
constructor parameter toMapWidget
. Use this to change the way platform MapView is being hosted by Flutter on Android. This changes the way map view is composited with Flutter UI, read more on this in Android Platform Views guide from the Flutter team. - [iOS]
MapboxMap
:isGestureInProgress()
,isUserAnimationInProgress()
,setConstrainMode()
,setNorthOrientation()
,setViewportMode()
andreduceMemoryUse()
are now available on iOS. - Add
LogConfiguration
allowing to intercept logs produced by the plugin. Pass your customLogWriterBackend
toLogConfiguration.registerLogWriterBackend()
to redirect logs produced by the mapping engine to your desired destination. - Add
MapWidget.onResourceRequestListener
that can be used to subscribe to resource requests made by the map. - [iOS] Re-wire
MapWidget
'sonScroll
event to be triggered whenever map is being panned instead of triggering it only after pan ends. - [iOS] Address crashes on iOS happening when user location is being shown.
- Bump platform Maps SDK dependencies to 11.1.0.
- Add
LogConfiguration
allowing to intercept logs produced by the plugin. Pass your customLogWriterBackend
toLogConfiguration.registerLogWriterBackend()
to redirect logs produced by the mapping engine to your desired destination. - Add
MapWidget.onResourceRequestListener
that can be used to subscribe to resource requests made by the map. - [iOS] Re-wire
MapWidget
'sonScroll
event to be triggered whenever map is being panned instead of triggering it only after pan ends. - [iOS] Address crashes on iOS happening when user location is being shown.
- Add an example representing a traffic route with color based on traffic volumes using LineLayer and Expression.
- [Android] Fix MapOptions incorrect index access at map creation, leading to map not being created(blank view).
- [Android] Use hybrid composition(HC) as the default platform view hosting mode on Android.
- [Android] Add experimental
androidHostingMode
constructor parameter toMapWidget
. Use this to change the way platform MapView is being hosted by Flutter on Android. This changes the way map view is composited with Flutter UI, read more on this in Android Platform Views guide from the Flutter team. - [iOS]
MapboxMap
:isGestureInProgress()
,isUserAnimationInProgress()
,setConstrainMode()
,setNorthOrientation()
,setViewportMode()
andreduceMemoryUse()
are now available on iOS. - Bump platform Maps SDK dependencies to 11.2.0-beta.1.
- Add a way to specify custom id for annotation manager(and subsequently its backing layer's and source's ids).
- Add
below
parameter tocreateAnnotationManager()
, use this to control the position of the annotation layer in relation to other style layers. - Add
DefaultLocationPuck2D
type interchangeable withLocationPuck2D
that allows customization of the default location indicator appearance. - Add
_AnnotationManager.removeAnnotationManagerById()
allowing to remove annotation manager by its id, without having to store a reference to the manager. - Fix point annotation image disappearing after update on iOS.
- Bump Pigeon to v16.0.0.
- Updater minimum Flutter SDK version to 3.10.0 and above.
- Update minumum Dart SDK version to 3.0.0 and above.
- Convert
MapboxMapsOptions.setBaseUrl()
,MapboxMapsOptions.getDataPath()
,MapboxMapsOptions.setDataPath()
,MapboxMapsOptions.getAssetPath()
,MapboxMapsOptions.setAssetPath()
,MapboxMapsOptions.getTileStoreUsageMode()
andMapboxMapsOptions.setTileStoreUsageMode()
to static methods. - Fix 2D puck's opacity not being respected on iOS.
- Make
padding
parameter optional inMapboxMap.cameraForCoordinateBounds()
andMapboxMap.cameraForCoordinates()
. - Fix initial camera options passed to
MapWidget
not being applied on Android. - Bump platform Maps SDK dependencies to 11.1.0.
Bump platform Maps SDK dependencies to 11.0.0.
- Fix registry token lookup failing with an unrelated error in certain circumstances.
- Screen-related units(screen coordinates, dimentions, etc.) are expected to be provided in logical pixels. We have matched screen-related units expected by the maps plugin to the units that Flutter operates with(logical pixels).
- Update pigeon to v11 (#248).
- Fix typecasting exeption when trying to access� nested collections #249).
- Set default style to
MapboxStyles.MAPBOX_STREETS
(#248).
- Fix scale bar and location component settings color decoding (#255).
- Bump platform Maps SDK to 10.13.0.
- Bump platform Maps SDK to 10.13.1.
- Fix 2d puck bearing not displayed.
- Fix pinchZoomEnabled gesture setting not applied.
- Fix multiple memory leaks.
- Add methods to set gesture listeners dynamically.
- Apply scale factor to UIImage.
- Apply scale factor to UIEdgeInsets.
- Fix vertical scrollMode lock on gesture settings update.
- Fix ImageStretches mapping.
- Expose
package:turf/helpers.dart
. - Bump platform Maps SDK dependencies to 10.10.0.
- Fix issue with multiple maps overriding platform channels of the previous instances.
- Fix exception accessing
style.getLayer
when layer property is an Expression.
- Fix
pixelsForCoordinates
implementation.
- Expose
style.localizeLabels
. - Expose
mapboxMap.attribution
,mapboxMap.logo
,mapboxMap.compass
andmapboxMap.scaleBar
settings.
- Fix deployment target for iOS to 11.
- Rename library to
mapbox_maps_flutter
due to naming conflict to be able publish topub.dev
.
- Align Kotlin version 1.5.31 with the Maps SDK.
- Rename
MapView
toMapWidget
. - Remove
RenderCacheOptions
. - Rename
MapboxMap.cameraForCoordinates2
toMapboxMap.cameraForCoordinatesCameraOptions
. - Rename
styles.dart
tomapbox_styles.dart
. - Rename
fill-extrusion_layer.dart
tofill_extrusion_layer.dart
,location-indicator_layer.dart
tolocation_indicator_layer.dart
. - Fix exception thrown by
MapboxMap.coordinatesForPixels
. - Fix camera example
_coordinateForPixel
. - Add gesture listeners
MapWidget.onTapListener
,MapWidget.onLongTapListener
,MapWidget.onScrollListener
.
- Decrease min flutter version to 2.10.5.
- Initial release.