ia_location_accuracy

Objective-C

enum ia_location_accuracy {}

Swift

enum ia_location_accuracy : Int

Defines the accuracy of location.

  • Best accuracy.

    Declaration

    Objective-C

    kIALocationAccuracyBest

    Swift

    case iaLocationAccuracyBest = 0
  • Low accuracy. Locations with this accuracy are typically obtained with lowest amount of processing to reduce device power drain.

    Declaration

    Objective-C

    kIALocationAccuracyLow

    Swift

    case iaLocationAccuracyLow = 1
  • Best accuracy for cart use case. Use when device is mounted to a shopping cart or similar platform with wheels.

    Declaration

    Objective-C

    kIALocationAccuracyBestForCart

    Swift

    case iaLocationAccuracyBestForCart = 2