Loading...

Version 3 has been deprecated. View the latest version of this guide.

React Native SDK v3 Release Notes

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

v3.5.2 - November 2, 2021

Update dependency in package.json to version 3.5.2: "@mappedin/react-native-sdk": "3.5.2"

  • Fixed issue where locations lost their logos when zooming or selecting them at certain camera angles
  • Fixed issue where minimap wouldn't label polygons properly

v3.5.1 - October 27, 2021

Update dependency in package.json to version 3.5.1: "@mappedin/react-native-sdk": "3.5.1"

  • createMarker method now works with MappedinNode
  • Significantly improved responsiveness immediately after loading the first map
  • Other performance and bug fixes
mapView.current?.createMarker(
polygon.entrances[0],
'<span style="width: 32px; height: 32px;">📍</span>',
{ anchor: MARKER_ANCHOR.TOP },
);

v3.5.0 - September 2, 2021

Update dependency in package.json to version 3.5.0: "@mappedin/react-native-sdk": "3.5.0"

Added support for Canvas Bound labels with a legacyLabels option. It can be used in the following way:

mapView.labelAllLocations({
legacyLabels: true
});
mapView.labelPolygon('', {
legacyLabels: true,
text: 'hello'
});

v3.4.3 - July 22, 2021

Update dependency in package.json to version 3.4.3: "@mappedin/react-native-sdk": "3.4.3"

  • Label performance improvements: Some issues affecting the speed of rendering labels on the map have been fixed. This can lead to improved load times when rendering labels on map initialization, especially when smart labels are enabled.
Was this page helpful?