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
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,9 @@ Mapbox welcomes participation and contributions from everyone.
5
5
> **16 KB Page Size Support:** Starting with version 11.7.0 and 10.19.0, **NDK 27 is supported** with dedicated artifacts that include [support for 16 KB page sizes](https://developer.android.com/guide/practices/page-sizes). If your app does not require 16 KB page size support, you can keep using our default artifacts without `-ndk27` suffix. For more information about our NDK support, see https://docs.mapbox.com/android/maps/guides/#ndk-support
6
6
7
7
# main
8
+
## Features ✨ and improvements 🏁
9
+
* [compose] Introduce experimental `IndoorSelector` composable function available inside `MapboxMap`, displaying a scrollable floor-selection widget that appears automatically when an indoor building is in view. Exposes `IndoorSelectorState` for programmatic access to the current floor list and selected floor, and an `onFloorClicked` callback for reacting to user selections.
10
+
* [compose] Add `IndoorSelectorControl` headless composable inside `MapIndoorSelectorScope`: attaches the indoor plugin to an `IndoorSelectorState` without rendering any UI, enabling custom floor-selector implementations.
8
11
9
12
# 11.25.0-rc.2 June 04, 2026
10
13
## Bug fixes 🐞
@@ -13,7 +16,6 @@ Mapbox welcomes participation and contributions from everyone.
13
16
## Dependencies
14
17
* Update gl-native to [v11.25.0-rc.2](https://github.com/mapbox/mapbox-maps-android/releases/tag/v11.25.0-rc.2), common to [v24.25.0-rc.2](https://github.com/mapbox/mapbox-maps-android/releases/tag/v11.25.0-rc.2).
15
18
16
-
17
19
# 11.25.0-rc.1 June 02, 2026
18
20
## Breaking changes ⚠️
19
21
* `MapView.setMaximumFps` and `MapSurface.setMaximumFps` are now annotated `@MainThread`. Callers must invoke them from the main thread; off-main callers will see a lint warning.
Copy file name to clipboardExpand all lines: compose-app/src/main/res/values/example_descriptions.xml
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,8 @@
18
18
<stringname="description_style_composition">Runtime styling with style composition</string>
19
19
<stringname="description_navigation_simulation">Simulate navigation experience with compose</string>
20
20
<stringname="description_multi_map">Showcase displaying two maps in the same Activity</string>
21
+
<stringname="description_indoor_example">Compose-native indoor floor selector backed by a hoisted IndoorState.</string>
22
+
<stringname="description_custom_indoor_selector_example">Custom floor-selector UI built with IndoorSelectorControl and a plain Column (no scroll).</string>
21
23
<stringname="description_style_states">Showcase using style states</string>
22
24
<stringname="description_style_positions">Showcase usage of slotsContent and layerPositionedContent to arrange contents within the base style using GenericStyle API.</string>
23
25
<stringname="description_model_layer">Showcase the usage of a 3D model layer.</string>
0 commit comments