EILIndoorLocationManagerDelegate Protocol Reference

Conforms to NSObject
Declared in EILIndoorLocationManager.h

Overview

The EILIndoorLocationManagerDelegate protocol defines the methods to receive location updates.

– indoorLocationManager:didUpdatePosition:withAccuracy:inLocation:

Tells the delegate that new position update is available.

- (void)indoorLocationManager:(EILIndoorLocationManager *)manager didUpdatePosition:(EILOrientedPoint *)position withAccuracy:(EILPositionAccuracy)positionAccuracy inLocation:(EILLocation *)location

Parameters

manager

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

EILIndoorLocationManager.h

– indoorLocationManager:didFailToUpdatePositionWithError:

Tells the delegate that position update could not be determined.

- (void)indoorLocationManager:(EILIndoorLocationManager *)manager didFailToUpdatePositionWithError:(NSError *)error

Parameters

manager

The manager object that generated the event.

error

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

Declared In

EILIndoorLocationManager.h