当前位置未显示在MapView(iOS)中

时间:2015-07-13 07:44:34

标签: ios objective-c mapkit showuserlocation

我已经设置了

  

self.mapView.showsUserLocation = YES;

但是,我仍然无法在Map中看到当前的引脚。

我错过了什么?

这是 viewDidLoad

- (void)viewDidLoad {
self.mapView.delegate = self;
self.locationManager = [[CLLocationManager alloc] init];
self.locationManager.delegate = self;
self.locationManager.distanceFilter = kCLDistanceFilterNone;
self.locationManager.desiredAccuracy = kCLLocationAccuracyBest;
#ifdef __IPHONE_8_0
if(IS_OS_8_OR_LATER) {
    [self.locationManager requestAlwaysAuthorization];
}
#endif

[self.locationManager startUpdatingLocation];

self.mapView.showsUserLocation = YES;
[self.mapView setMapType:MKMapTypeStandard];
[self.mapView setZoomEnabled:YES];
[self.mapView setScrollEnabled:YES];

MKCoordinateRegion region;
region.center.latitude = 25.03;  
region.center.longitude = 121.5;
region.span.latitudeDelta = 0.2;
region.span.longitudeDelta = 0.2;

[self.mapView setRegion:region animated:YES];
}

mapView

- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation*)userLocation
{
double X= userLocation.coordinate.latitude;
double Y= userLocation.coordinate.longitude;

NSLog(@"%f,%f",X,Y);

CLLocationCoordinate2D currentPosition = [userLocation coordinate];
MKCoordinateRegion region =MKCoordinateRegionMakeWithDistance(currentPosition, 800, 800);
[self.mapView setRegion:[self.mapView regionThatFits:region] animated:YES];
}

谢谢!

1 个答案:

答案 0 :(得分:2)

iOS8上的位置授权存在问题。要解决此问题,请确保将以下一个或两个密钥添加到Info.plist文件中:

  • NSLocationWhenInUseUsageDescription
  • NSLocationAlwaysUsageDescription

在代码中替换此部分:

#ifdef __IPHONE_8_0
if(IS_OS_8_OR_LATER) {
    [self.locationManager requestAlwaysAuthorization];
}
#endif 

有了这个:

// Add this to solve a location authorization issue on iOS8
// See more at: http://nevan.net/2014/09/core-location-manager-changes-in-ios-8/
if ([self._locationManager respondsToSelector:@selector(requestWhenInUseAuthorization)]) {
    [self._locationManager requestWhenInUseAuthorization];
}

希望这有帮助。

相关问题