地图定位的坐标和mapview中显示的当前位置信息不一致
2019獨(dú)角獸企業(yè)重金招聘Python工程師標(biāo)準(zhǔn)>>>
// 準(zhǔn)確打開方式
- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation {
? ? CLLocationCoordinate2D coordinate=userLocation.coordinate;//位置坐標(biāo)
? ? MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance(coordinate, 500, 500);//定位放大
?
? ? ? [self.mapView setRegion:region animated:YES];
}
?
//有誤差的打開方式
-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations{
? ? CLLocation *location=[locations firstObject];//取出第一個(gè)位置
? ? CLLocationCoordinate2D coordinate=location.coordinate;//位置坐標(biāo)
? ? NSLog(@"經(jīng)度:%f,緯度:%f,海拔:%f,航向:%f,行走速度:%f",coordinate.longitude,coordinate.latitude,location.altitude,location.course,location.speed);
?? ?
? ? //如果不需要實(shí)時(shí)定位,使用完即使關(guān)閉定位服務(wù)
? ? [_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
轉(zhuǎn)載于:https://my.oschina.net/u/2601834/blog/710928
總結(jié)
以上是生活随笔為你收集整理的地图定位的坐标和mapview中显示的当前位置信息不一致的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: monkey 环境搭建
- 下一篇: storm基础系列之二----zooke