CLLocationAccuracy详解

    Double类型的参数

    定位的精度,应用:1.当需要拿到大概的位置不需要知道具体信息的时候请用最粗糙的定位,2.如果需要知道详细的位置信息的时候需要用更高精度,相对来说精度越高,功率消耗肯定会越高,耗电量也会越高。

    可以自己选定特定的值赋值。    @property(assign, nonatomic)

以下在框架中写死的参数:

extern const CLLocationAccuracy kCLLocationAccuracyBestForNavigation 

    //最适合导航用的定位  iOS4.0以后新增

extern const CLLocationAccuracy kCLLocationAccuracyBest;

    //精度最高的定位

extern const CLLocationAccuracy kCLLocationAccuracyNearestTenMeters;

    //定位精度在10米以内

extern const CLLocationAccuracy kCLLocationAccuracyHundredMeters;

    //定位精度在100米以内

extern const CLLocationAccuracy kCLLocationAccuracyKilometer;

     //定位精度在1000米以内

extern const CLLocationAccuracy kCLLocationAccuracyThreeKilometers;

     //定位精度在3000米以内

你可能感兴趣的:(CLLocationAccuracy详解)