我正在尝试使用以下代码获取用户位置并将其显示在 mapView 中iOS6
:
- (void) locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations{
if (locations.count>0) {
for (CLLocation *location in locations) {
[locationList addObject:location];
if (location != nil) {
// Zoom to the current user location.
MKCoordinateRegion userLocation =[mapView regionThatFits: MKCoordinateRegionMakeWithDistance(location.coordinate, 150.0, 150.0)];
[mapView setRegion:userLocation animated:YES];
NSLog(@"%f,%f", mapView.centerCoordinate.latitude,mapView.centerCoordinate.longitude);
NSLog(@"%f,%f", mapView.region.span.latitudeDelta,mapView.region.span.longitudeDelta);
}
}
}
}
但是位置更新后,[mapView setRegion:userLocation animated:YES]
不会对区域进行任何更改mapView
,但用户位置可以显示为蓝点。像这样的NSLog
打印:
nan,nan
0.000000,360.000000
这意味着没有任何改变。我检查了大多数与地图相关的问题,他们只是调用此方法并在地图中心获取位置显示。
我想知道为什么我怎样才能把用户位置放到地图中心。