ios定位CLLocationManager

來源:互聯網
上載者:User
轉自:http://www.cnblogs.com/syxchina/archive/2012/10/14/2723522.html

11.1 iOS定位服務

iOS中有三個定位服務組件:

   Wifi定位,通過查詢一個Wifi路由器的地理位置的資訊。比較省電,iPod touch和iPad也可以採用。

   蜂窩基站定位,通過移動運用商基站定位。也適合有3G版本的iPod touch和iPad。

   GPS衛星定位,通過3-4顆GPS定位位置定位,最為準確,但是耗電量大,不能遮擋。

Core Location

Core Location是iPhone、iPad等開發定位服務應用程式的架構。我們要在Xcode中添加“CoreLocation.framework”存在的架構。

主要使用的類是:CLLocationManager,通過CLLocationManager實現定位服務。

CoreLocation.framework

定位服務執行個體

項目WhereAmI:

WhereAmIViewController.h

#import <UIKit/UIKit.h>#import <CoreLocation/CoreLocation.h>@interface ViewController : UIViewController<CLLocationManagerDelegate> {    CLLocationManager* locationManager;}@property (strong, nonatomic)    CLLocationManager* locationManager;@property (retain, nonatomic) IBOutlet UILabel *longitudeText;@property (retain, nonatomic) IBOutlet UILabel *latituduText;@property (retain, nonatomic) IBOutlet UIActivityIndicatorView *activity;- (IBAction)findMe:(id)sender;- (IBAction)webMap:(id)sender;@end

 

CLLocationManagerDelegate是定位服務的委託,常用的位置變化回調方法是:

locationManager:didUpdateToLocation:fromLocation: locationManager:didFailWithError:

CLLocationManager 是定位服務管理類,通過它可以設定定位服務的參數、擷取經緯度等。

m中載入方法

- (IBAction)findMe:(id)sender {    self.locationManager = [[[CLLocationManager alloc] init] autorelease];    self.locationManager.delegate = self;    self.locationManager.desiredAccuracy = kCLLocationAccuracyBest;    self.locationManager.distanceFilter = 1000.0f;    [self.locationManager startUpdatingLocation];    [activity startAnimating];    NSLog(@"start gps");}

CLLocationManager 是的startUpdatingLocation方法啟動所有定位硬體,對應的方法是stopUpdatingLocation,通過調用該方法關閉定位服務器更新,為了省電必須在不用的時候調用該方法關閉定位服務。

此外,我們還可以在這裡設定定位服務的參數,包括:distanceFilter和desiredAccuracy。

distanceFilter,這個屬性用來控制定位服務更新頻率。單位是“米”。 desiredAccuracy,這個屬性用來控制定位精度,精度

越高耗電量越大。

定位精度 

desiredAccuracy精度參數可以iOS SDK通過常量實現:

  kCLLocationAccuracyNearestTenMeters,10米 

  kCLLocationAccuracyHundredMeters ,100米

  kCLLocationAccuracyKilometer ,1000米

  kCLLocationAccuracyThreeKilometers,3000米

  kCLLocationAccuracyBest ,最好的精度

  kCLLocationAccuracyBestForNavigation,導航情況下最好精度,iOS 4 SDK新增加。一般要有外接電源時候才能使用。

委託方法用於實現位置的更新

-(void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {    latituduText.text = [NSString stringWithFormat:@"%3.5f",newLocation.coordinate.latitude];    longitudeText.text = [NSString stringWithFormat:@"%3.5f",newLocation.coordinate.longitude];    [activity stopAnimating];    [locationManager stopUpdatingLocation];    NSLog(@"location ok");}

 

該委託方法不僅可以獲得當前位置(newLocation),還可以獲得上次的位置(oldLocation ),CLLocation 對象coordinate.latitude屬性獲得經度,coordinate.longitude屬性獲得緯度。

[NSString stringWithFormat:@"%3.5f”, newLocation.coordinate.latitude]  中的%3.5f是輸出整數部分是3位,小數部分是5位的浮點數。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.