MBXLiveTrackingClientSettings
@interface MBXLiveTrackingClientSettings : NSObject
Parameters that are used to tune live tracking sessions.
-
Desired accuracy of location fixes in the form of categories.
Values: String (see LiveTrackingClientAccuracyCategory constants)
Declaration
Objective-C
@property (class, nonatomic, readonly) NSString *AccuracyCategory;
-
Desired accuracy of location fixes specified in meters.
Value: Number (meters)
Declaration
Objective-C
@property (class, nonatomic, readonly) NSString *Accuracy;
-
Minimum displacement between location updates in the form of categories.
Value: String (LiveTrackingClientMinimumDisplacementCategory constants)
Declaration
Objective-C
@property (class, nonatomic, readonly) NSString *MinimumDisplacementCategory;
-
Minimum displacement between location updates in meters.
Value: Number (meters)
Declaration
Objective-C
@property (class, nonatomic, readonly) NSString *MinimumDisplacement;
-
Desired interval for active location updates.
Value: Number (milliseconds)
Declaration
Objective-C
@property (class, nonatomic, readonly) NSString *Interval;
-
Maximum wait time for location updates. If it’s at least 2x larger then
Interval
, then location delivery may be delayed and multiple locations can be delivered at once.Value: Number (milliseconds)
Declaration
Objective-C
@property (class, nonatomic, readonly) NSString *MaximumInterval;
-
Sets whether the client wants the locations services to wait a few seconds for accurate locations initially, when accurate locations could not be computed on the device immediately after high accuracy request is made. By default the location services will wait for accurate locations.
Note: applies only to high accuracy requests; applies to the initial locations computed right after the location update is requested, the following inaccurate locations may still be delivered to the client without delay.
Value: Boolean
Declaration
Objective-C
@property (class, nonatomic, readonly) NSString *WaitForAccurateLocation;
-
Activity type associated with this live tracking session.
Value: String (LiveTrackingActivityType constants)
Declaration
Objective-C
@property (class, nonatomic, readonly) NSString *ActivityType;