地图定位的坐标和mapview中显示的当前位置信息不一致
2019獨角獸企業重金招聘Python工程師標準>>>
// 準確打開方式
- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation {
? ? CLLocationCoordinate2D coordinate=userLocation.coordinate;//位置坐標
? ? MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance(coordinate, 500, 500);//定位放大
?
? ? ? [self.mapView setRegion:region animated:YES];
}
?
//有誤差的打開方式
-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations{
? ? CLLocation *location=[locations firstObject];//取出第一個位置
? ? CLLocationCoordinate2D coordinate=location.coordinate;//位置坐標
? ? NSLog(@"經度:%f,緯度:%f,海拔:%f,航向:%f,行走速度:%f",coordinate.longitude,coordinate.latitude,location.altitude,location.course,location.speed);
?? ?
? ? //如果不需要實時定位,使用完即使關閉定位服務
? ? [_locationManager stopUpdatingLocation];
? ? MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance(coordinate, 500, 500);//定位放大
? ? [self.mapView setCenterCoordinate:coordinate animated:YES];
? ? [self.mapView setRegion:region animated:YES];
?}
鏈接
http://stackoverflow.com/questions/8802973/ios-difference-between-the-location-i-get-from-cllocationmanager-and-mkmapview
轉載于:https://my.oschina.net/u/2601834/blog/710928
總結
以上是生活随笔為你收集整理的地图定位的坐标和mapview中显示的当前位置信息不一致的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: monkey 环境搭建
- 下一篇: CSS3学习基本记录