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
isEnterpriseModeproperty toMapDatafor runtime detection of the data source. Enterprise mode is automatically detected from the Mappedin Venue Format (MVF) data when usinghydrateMapData(). - Added
collisionsEnabledoption to floor images state for controlling whether images on a floor participate in collision detection with labels andMarkers. 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 andAreas. - Added
withLabelsandcaptureMarkersoptions totakeScreenshot()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
clippingPlaneZOffsettoInfinityviaupdateState()was silently ignored. - Fixed an issue where child
EnterpriseLocationinstances were not found usingMapData.getByExternalId(). - Fixed an issue where hiding footprints in multi-floor view would break basement rendering.
- Fixed an issue where
Directions.departureandDirections.destinationreturned the parentEnterpriseLocationinstead 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.departureandDirections.destinationreturned incomplete objects with onlyid,name, and__typeinstead of fully hydrated properties.