Skip to content

Instantly share code, notes, and snippets.

@edwardinubuntu
Created January 3, 2011 07:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edwardinubuntu/763197 to your computer and use it in GitHub Desktop.
Save edwardinubuntu/763197 to your computer and use it in GitHub Desktop.
kCLLocationAccuracy
/*
* kCLLocationAccuracy<x>
*
* Discussion:
* Used to specify the accuracy level desired.
* The location service will try its best to achieve
* your desired accuracy. However, it is not guaranteed.
* To optimize power performance,
* be sure to specify an appropriate accuracy for your usage scenario
* eg, use a large accuracy value when only a coarse location is needed.
*/
extern const CLLocationAccuracy kCLLocationAccuracyBestForNavigation
__OSX_AVAILABLE_STARTING(__MAC_NA,__IPHONE_4_0);
extern const CLLocationAccuracy kCLLocationAccuracyBest;
extern const CLLocationAccuracy kCLLocationAccuracyNearestTenMeters;
extern const CLLocationAccuracy kCLLocationAccuracyHundredMeters;
extern const CLLocationAccuracy kCLLocationAccuracyKilometer;
extern const CLLocationAccuracy kCLLocationAccuracyThreeKilometers;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment