SPMapMode

Objective-C

enum SPMapMode : NSUInteger {}

Swift

enum SPMapMode : UInt, @unchecked Sendable

SmartMap mode

  • Map mode of the map where there will only be floor switcher. Users can do explore the map, clicking POIs behavior will be disabled.

    Declaration

    Objective-C

    SPMapModeMapOnly

    Swift

    case mapOnly = 0
  • Map mode where user can not interact with the map

    Declaration

    Objective-C

    SPMapModeStatic

    Swift

    case `static` = 1
  • Default mode when smart map starts. There will be floor switcher, search bottom sheet. Clicking POIs from smart map will show POI Info view

    Declaration

    Objective-C

    SPMapModeSearch

    Swift

    case search = 2