Loading...

iOS SDK v4 - Release Notes

MappedIn iOS SDK release notes are posted here and this page will be kept up-to-date as updates are released. The SDK is available from CocoaPods by adding the following to your Podfile

pod 'MappedIn', '4.1.5'

v4.1.5 - September 30, 2022

  • Add option to disable sending search analytics
mapView.loadVenue(
options: MPIOptions.Init(
clientId: "",
clientSecret: "",
venue: "mappedin-demo-mall",
),
showVenueOptions: MPIOptions.ShowVenue(
prepareSearch: true,
searchOptions: MPIOptions.SearchOptions(emitAnalyticsEvents: false)
)
)

v4.1.4 - September 21, 2022

  • Methods to set and get camera zoom. Higher values represent further distance between the map and the camera resulting in a zoomed out view.
  • Add getNorth() -method for getting the map orientation
  • Additional fixes to venue loading issues on iOS

v4.1.2 - September 19, 2022

  • Add errorCallback in getVenue
  • Fix long press selection bug on MapView fixed
  • Fix Multi-Destination directions
  • Fix loading issue impacting few unique venues

v4.1.0 - August 2, 2022

  • Added Offline Search feature. Initialize the OfflineSearch with venue data and easily query it with .search(query).

v4.0.18 - July 6, 2022

  • Add MPIVenue object for information about the venue. Currently displays the venue name

v4.0.17 - April 22, 2022

  • Improved frame rates on large venues especially on Android by merging geometries, which reduces calls to the GPU by 10x, resulting in much higher FPS.
  • Image textures are cached more effectively, resulting in fewer HTTP requests
  • Performance improvements by processing labels on-demand per map
  • Fixed polygon image rotation
  • Fixed labelAllLocations so that polygons with images are not automatically labeled
  • Improved performance of Floating Labels by avoiding redrawing the label when possible
  • Improved the performance of tooltips, markers and floating labels
  • Improved the initial render times of venues
  • Fixed hover tooltip placement after the map has been resized when hovering on a Flat Label location
  • Fixed Floating label positions to the height of the polygon
  • Fixed issues in the rendering of text objects on the map

v4.0.1 - December 1, 2021

  • Fixed Floating label positions to the height of the polygon
  • Fixed issues in the rendering of text objects on the map
  • Fixed labelAllLocationsOnInit
Was this page helpful?