Mappedin JS, React & React Native SDK v6.14.0

v6.14.0

February 10, 2026

Features

  • Added Query.at() which returns all geometry (Spaces, MapObjects, Areas, Floors) at a given coordinate.
const results = await mapData.Query.at(coordinate);for (const item of results) {  console.log(item.__type, item.name);}
  • Added isEnterpriseMode property to MapData for runtime detection of the data source. Enterprise mode is automatically detected from the Mappedin Venue Format (MVF) data when using hydrateMapData().
  • Added collisionsEnabled option to floor images state for controlling whether images on a floor participate in collision detection with labels and Markers. In multi-floor view, image collisions are automatically disabled on non-current floors, preventing images from hiding labels on floors that are not in focus.
mapView.updateState(floor, {  images: {    visible: true,    collisionsEnabled: true,  },});
  • Added support for map images on PointOfInterests and Areas.
  • Added withLabels and captureMarkers options to takeScreenshot() for including labels and HTML markers in screenshots.

Fixes

  • Fixed an issue where takeScreenshot() did not include the outdoor view.
  • Fixed an issue where setting clippingPlaneZOffset to Infinity via updateState() was silently ignored.
  • Fixed an issue where child EnterpriseLocation instances were not found using MapData.getByExternalId().
  • Fixed an issue where hiding footprints in multi-floor view would break basement rendering.
  • Fixed an issue where Directions.departure and Directions.destination returned the parent EnterpriseLocation instead of the specific instance that owns the navigation node.
  • Fixed an issue where enabling model clipping would break alpha blending for transparent materials.
  • Fixed an issue where clipped regions of Models would capture clicks, preventing interaction with elements behind the clipped area.

React Native Only

  • Fixed an issue where Directions.departure and Directions.destination returned incomplete objects with only id, name, and __type instead of fully hydrated properties.