MaplyLocationTrackerDelegate

Objective-C

@protocol MaplyLocationTrackerDelegate

- (void) locationManager:(CLLocationManager * __nonnull)manager didFailWithError:(NSError * __nonnull)error;

- (void) locationManager:(CLLocationManager * __nonnull)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status;

@optional

- (void) updateLocation:(CLLocation * __nonnull)location;

- (MaplyLocationTrackerSimulationPoint)getSimulationPoint;

@end

Swift

protocol MaplyLocationTrackerDelegate

Undocumented

  • Undocumented

    Declaration

    Objective-C

    - (void) locationManager:(CLLocationManager * __nonnull)manager didFailWithError:(NSError * __nonnull)error;

    Swift

    func locationManager(_ manager: CLLocationManager, didFailWithError error: Error)
  • Undocumented

    Declaration

    Objective-C

    - (void) locationManager:(CLLocationManager * __nonnull)manager didChangeAuthorizationStatus:(CLAuthorizationStatus)status;

    Swift

    func locationManager(_ manager: CLLocationManager, didChange status: CLAuthorizationStatus)
  • Undocumented

    Declaration

    Objective-C

    - (void) updateLocation:(CLLocation * __nonnull)location;

    Swift

    optional func update(_ location: CLLocation)
  • Undocumented

    Declaration

    Objective-C

    - (MaplyLocationTrackerSimulationPoint)getSimulationPoint;

    Swift

    optional func getSimulationPoint() -> MaplyLocationTrackerSimulationPoint