Skip to main content
Version: 6.0

Release Notes

Mappedin SDK for React Native v6 release notes are posted here and this page will be kept up-to-date as updates are released. The SDK is available from @mappedin/react-native-sdk on NPM.

v6.0.1-alpha.14

Aug 28, 2025

Features

  • React Native SDK Browser Support: The React Native SDK can now run directly in browser environments.
  • Introduced new path.width property: short hand for pathOptions.nearRadius, pathOptions.farRadius, pathOptions.nearZoom, pathOptions.farZoom
mapView.updateState(path, {
on: 'zoom-level',
input: [17, 18],
output: [1, 2],
easing: 'ease-in',
});

Breaking Changes

  • Marker API Update: Renamed marker.anchor to marker.placement
  • Experimental Labels: Renamed mapView.Labels.auto to mapView.Labels.__EXPERIMENTAL__auto to reflect its status
  • BlueDot Deprecation:
    • mapView.BlueDot is now deprecated
    • Temporary access available via mapView.__BlueDot
    • Will be moved to separate package in future release

Bug Fixes

  • EU Environment Loading: Resolved issue preventing mapData loading in eu environment
  • Deep API Calls: Fixed nested API calls (2+ levels deep) - mapView.Camera.interactions.set() now works correctly

v6.0.1-alpha.13

July 21, 2025

Features

Dynamic Focus Hook

New useDynamicFocus hook to RN user to utilize the @mappedin/dynamic-focus package.

const dynamicFocus = useDynamicFocus();
dynamicFocus.enable();

Offline Map Support

Load maps without internet connectivity by passing pre-hydrated map data to <MapView /> component

const mapData = await hydrateMapData(mvf);
<MapView mapData={mapData} />

Offline 3D Models

Support for offline GLB and GLTF files (base64 encoded)

<Models url={base64EncodedModelUri} />

Smaller & Cleaner WaterMark

Smaller, icon-only Mappedin watermark for cleaner map displays

v6.0.0-alpha.12 - June 30, 2025

  • Initial release.