SPObjectSource

Objective-C

enum SPObjectSource : NSUInteger {}

Swift

enum SPObjectSource : UInt, @unchecked Sendable

Smart Map Object Sources

  • Object origin is from the static map data

    Declaration

    Objective-C

    SPObjectSourceStatic = 0

    Swift

    case `static` = 0
  • Object origin is a marker created by the user

    Declaration

    Objective-C

    SPObjectSourceMarker = 1

    Swift

    case marker = 1
  • Object origin is live map data

    Declaration

    Objective-C

    SPObjectSourceLive = 2

    Swift

    case live = 2