ArcGIS Runtime SDK for iOS
100.15
|
A change handler delegate for AGSLocationDataSource
.
A protocol which must be adopted by a class wishing to informed about location and heading changed events on AGSLocationDatasource
. An instance of the class must then be set as AGSLocationDataSource::locationChangeHandlerDelegate
.
All of the methods of this protocol are optional.
Note: The delegate methods can be called on an arbitrary thread.
@define{AGSLocationDatasource.h, ArcGIS}
Instance Methods | |
(void) | - locationDataSource:headingDidChange: |
(void) | - locationDataSource:locationDidChange: |
(void) | - locationDataSource:statusDidChange: |
|
optional |
Tells the delegate that the heading has changed.
locationDataSource | The location data source causing the heading change. |
heading | The new heading. |
|
optional |
Tells the delegate that the location has changed.
locationDataSource | The location data source causing the location change. |
location | The new location. |
|
optional |
Tells the delegate that the data source status has changed.
locationDataSource | The location data source causing the location change. |
status | The new status. |