- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{ location = [newLocation coordinate];
curLat =[NSString stringWithFormat:@"%f",location.latitude];//get latitude
curLng =[NSString stringWithFormat:@"%f",location.longitude];//get longitude ‘位置点不准确,获取了几次也不准,有什么解决方法
       
}