Skip to main content
Version: 6.0

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.preloadFloors option to preload floors.
  • Added -MultiFloorViewOptions.floorGap option to set the gap between floors.
  • Fixed - Show3DMapOptions.initialFloor should 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.getById not 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.getState and MapView.updateState should 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.