iOS中的MapKit集成了定位的功能,使用一行代碼就能夠在google地圖上展現出本身當前的位置,代碼以下: html
-(IBAction) showLocation:(id) sender { if ([[btnShowLocation titleForState:UIControlStateNormal] isEqualToString:@"Show My Location"]) { [btnShowLocation setTitle:@"Hide My Location" forState:UIControlStateNormal]; mapView.showsUserLocation = YES; } else { [btnShowLocation setTitle:@"Show My Location" forState:UIControlStateNormal]; mapView.showsUserLocation = NO; } }
關鍵的代碼就是:mapView.showUserLocation=YES. git
還有就是經過CoreLocation框架寫代碼去請求當前的位置,同樣也很是簡單: 框架
第一步:建立一個CLLocationManager實例 ide
CLLocationManager *locationManager = [[CLLocationManager alloc] init];
第二步:設置CLLocationManager實例委託和精度 google
locationManager.delegate = self; locationManager.desiredAccuracy = kCLLocationAccuracyBest;
第三步:設置距離篩選器distanceFilter,下面表示設備至少移動1000米,才通知委託更新 spa
locationManager.distanceFilter = 1000.0f;
或者沒有篩選器的默認設置: code
locationManager.distanceFilter = kCLDistanceFilterNone;
第四步:啓動請求 orm
[locationManager startUpdatingLocation];
使用下面代碼中止請求: htm
[locationManager stopUpdatingLocation];
這個委託中有:locationManager:didUpdateToLocation: fromLocation方法,用於獲取經緯度。 get
能夠使用下面代碼從CLLocation 實例中獲取經緯度
CLLocationDegrees latitude = theLocation.coordinate.latitude; CLLocationDegrees longitude = theLocation.coordinate.longitude;
使用下面代碼獲取你的海拔:
CLLocationDistance altitude = theLocation.altitude;
使用下面代碼獲取你的位移:
CLLocationDistance distance = [fromLocation distanceFromLocation:toLocation];
總結:本文主要是講解了如何在iOS設備google地圖上展現本身的當前位置。