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: CHANGELOG.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,10 +10,15 @@ Mapbox welcomes participation and contributions from everyone.
10
10
* Add click gesture support to `Marker` composable with `onClick` parameter
11
11
* Introduced `ScaleBarSettings.distanceUnits` property supporting metric, imperial, and nautical units, replacing the boolean `isMetricUnits` property.
12
12
13
-
# 11.16.0
13
+
14
+
# 11.16.0 October 21, 2025
14
15
## Bug fixes 🐞
15
16
* Fix location request leak when setting custom location provider after updating settings
16
17
18
+
## Dependencies
19
+
* Update gl-native to [v11.16.0](https://github.com/mapbox/mapbox-maps-android/releases/tag/v11.16.0), common to [v24.16.0](https://github.com/mapbox/mapbox-maps-android/releases/tag/v11.16.0).
Copy file name to clipboardExpand all lines: extension-androidauto/README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ allprojects {
33
33
// In your build.gradle, add the extension with your other dependencies.
34
34
dependencies {
35
35
// Note that the Mapbox Android Auto Extension depends on the entire Mapbox Maps SDK, it will bring the whole Mapbox Maps SDK with the same version as transitive dependency.
@@ -122,7 +122,7 @@ You can set the initial map style with `MapStyle` composable function and the in
122
122
123
123
### Use raw `MapboxMap` methods through `MapEffect` or `DisposableMapEffect`
124
124
125
-
Mapbox Compose Extension is built around the `MapView` in the base maps SDK. It's unlikely that we will be able to cover the full API surface in this wrapper, so we expose the reference to the raw `MapView` so that you can use all the API surface inside a `MapEffect`.
125
+
Mapbox Compose Extension is built around the `MapView` in the base maps SDK. It's unlikely that we will be able to cover the full API surface in this wrapper, so we expose the reference to the raw `MapView` so that you can use all the API surface inside a `MapEffect`.
126
126
127
127
Please note that using raw `MapView` APIs in `MapEffect` might introduce internal state changes that interferes with the Compose states, and might result in unexpected behaviours, please use it with caution.
128
128
@@ -234,7 +234,7 @@ The following example showcases adding one circle annotation to the map:
234
234
true
235
235
}
236
236
circleRadius =20.0
237
-
circleColor =Color.Blue
237
+
circleColor =Color.Blue
238
238
}
239
239
}
240
240
}
@@ -274,7 +274,7 @@ Adding multiple Annotations to the map using `AnnotationGroup` is more efficient
274
274
Toast.LENGTH_SHORT
275
275
).show()
276
276
true
277
-
}
277
+
}
278
278
}
279
279
}
280
280
}
@@ -388,7 +388,7 @@ The following example showcases adding `ViewAnnotation` that holds a `Button` to
The Map ornaments are introduced as composable functions within dedicated scope and can be set to the MapboxMap composable function.
394
394
@@ -472,9 +472,9 @@ The following example showcases how to change the `GesturesSettings` through hoi
472
472
473
473
The map style can be set through `MapboxStyleComposable`, currently we expose following Style composable functions:
474
474
475
-
*`GenericStyle` for all the available style features as weakly typed APIs, it has full flexibility to control any style/slot/positioned layers and style import configs, but alternative strongly typed APIs should be preferred for safety and convenience to use.
475
+
*`GenericStyle` for all the available style features as weakly typed APIs, it has full flexibility to control any style/slot/positioned layers and style import configs, but alternative strongly typed APIs should be preferred for safety and convenience to use.
476
476
*`MapStyle` for simple loading style use cases if you don't need slots position your layer according to the layerIds defined in the style json.
477
-
*`MapboxStandardStyle` for the default Mapbox Standard Style, it exposes available slots to position runtime-added layers and style import configs as strongly typed API.
477
+
*`MapboxStandardStyle` for the default Mapbox Standard Style, it exposes available slots to position runtime-added layers and style import configs as strongly typed API.
478
478
479
479
#### Runtime styling with layers and sources
480
480
@@ -486,7 +486,7 @@ The layers can be added to the style/map as `MapboxMapComposable` functions.
486
486
The sources are exposed as source state, which can be hoisted outside of the map and be shared with multiple layers. Please note the source state can not be shared across multiple map instances.
487
487
488
488
Please also note that the layer id and source id are automatically generated and remembered by default, so that you can reuse the layers in different places without `layerId already exist` error.
489
-
In case if you need the layer/source id later for other purpose, e.g. query rendered features, you can provide your own id and reuse later.
489
+
In case if you need the layer/source id later for other purpose, e.g. query rendered features, you can provide your own id and reuse later.
490
490
491
491
The following example showcases how to work with runtime styling with composable functions:
0 commit comments