EILBackgroundIndoorLocationManagerDelegate Protocol Reference

Conforms to NSObject
Declared in EILBackgroundIndoorLocationManager.h

Overview

The EILBackgroundIndoorLocationManagerDelegate protocol defines the methods to receive location updates in background.

– backgroundIndoorLocationManager:didUpdatePosition:withAccuracy:inLocation:

Tells the delegate that new position update is available.

- (void)backgroundIndoorLocationManager:(EILBackgroundIndoorLocationManager *)locationManager didUpdatePosition:(EILOrientedPoint *)position withAccuracy:(EILPositionAccuracy)positionAccuracy inLocation:(EILLocation *)location

Parameters

locationManager

The manager object that generated the event.

position

The position inside the location.

positionAccuracy

The accuracy of the determined position.

location

The location for which the position was updated.

Declared In

EILBackgroundIndoorLocationManager.h

– backgroundIndoorLocationManager:didFailToUpdatePositionWithError:

Tells the delegate that position update could not be determined.

- (void)backgroundIndoorLocationManager:(EILBackgroundIndoorLocationManager *)locationManager didFailToUpdatePositionWithError:(NSError *)error

Parameters

locationManager

The locationManager object that generated the event.

error

The error object containing information why position could not be determined.

Declared In

EILBackgroundIndoorLocationManager.h