iOS擷取當前位置經緯度

來源:互聯網
上載者:User

最近在做一個公交車查詢的項目,需要定位到當前位置以便進行附近網站查詢,和大家分享一下怎樣擷取自己當前位置的經緯度

首先添加CoreLocation.framework庫:


引用標頭檔並聲明CLLocationManagerDelegate代理:

接下來聲明要用到的變數:

@property (strong, nonatomic) CLLocationManager *locManager;@property (strong, nonatomic) CLLocation *checkinLocation;@property (strong, nonatomic) NSString *currentLatitude; //緯度@property (strong, nonatomic) NSString *currentLongitude; //經度
在viewDidLoad中判斷使用者是否啟用定位服務,第一次進入應用時系統會提示是否啟用定位操作。然後開始定位當前位置:

if ([CLLocationManager locationServicesEnabled]) {        self.locManager = [[CLLocationManager alloc] init];        self.locManager.delegate = self;    }else{        UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"警告" message:@"無法進行定位操作" delegate:self cancelButtonTitle:@"確定" otherButtonTitles:nil, nil];        [alert show];    }    [self.locManager startUpdatingLocation];

調用代理方法更新當前位置:

-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations{    self.checkinLocation = [locations lastObject];    CLLocationCoordinate2D cool = self.checkinLocation.coordinate;    self.currentLatitude  = [NSString stringWithFormat:@"%.4f",cool.latitude];    self.currentLongitude = [NSString stringWithFormat:@"%.4f",cool.longitude];        NSLog(@"%@,%@",self.currentLatitude,self.currentLongitude);}

運行程式,控制台也輸出了當前位置的經緯度(遮住地址,寫的不好你們也找不到我):


第一次寫部落格,希望能對大家有所協助,有錯誤和不足的地方希望大家能提提意見,學習的路上與大家共勉,我可是勵志要成為火星猿的男人。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.