Release Notes
Mappedin SDK for Android release notes are posted here and this page will be kept up-to-date as updates are released.
6.2.0-alpha.1 - December 30, 2025
- Upgraded to Mappedin JS v6.9.1.
- Added -
Show3DMapOptions.preloadFloorsoption to preload floors. - Added -
MultiFloorViewOptions.floorGapoption to set the gap between floors. - Fixed -
Show3DMapOptions.initialFloorshould accept only a string.
⚠️ Breaking Changes
- Changed - Strongly type MapView.on parameters and return values
// ❌ Before
mapView.on("click") { payload ->
val clickPayload = payload as? ClickPayload
}
// ❌ Before
mapView.on(Events.CLICK) { payload ->
val clickPayload = payload as? ClickPayload
}
// ✅ After
mapView.on(Events.Click) { clickPayload ->
}
6.1.0-alpha.1 - December 19, 2025
- Added - LabelAppearance.iconScale property to control the scale of the icon.
- Fixed -
MapData.getByIdnot returning the correct type.
⚠️ Breaking Changes
- Fixed - Removed duplicate inline implementation of Interpolation and Width.
// ❌ Before
AddPathOptions(
width = AddPathOptions.Width.Fixed(1.0),
)
// ✅ After
AddPathOptions(
width = Width.Value(1.0),
)
- Fixed -
MapView.getStateandMapView.updateStateshould use data classes and not plain objects.
// ❌ Before
mapView.updateState(space, mapOf("interactive" to true)) { }
// ✅ After
mapView.updateState(space, GeometryUpdateState(interactive = true)) { }
6.0.0-alpha.1 - December 4, 2025
- Upgraded to Mappedin JS v6.7.0.
6.0.0-alpha.0 - December 3, 2025
- Initial release of Mappedin SDK for Android v6.