-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations{
CLLocation *cation =[locations objectAtIndex:0];
NSLog(@"纬度--%f",cation.coordinate.latitude);
NSLog(@"经度--%f",cation.coordinate.longitude);
[self.locationManager stopUpdatingLocation];//停止更新位置
}
这不是百度的,百度的是
- (void)didUpdateBMKUserLocation:(BMKUserLocation *)userLocation
百度底层会调用那些CL开头的方法,所有是有值的,建议删掉交给百度SDK处理
你只用调取
- (void)didUpdateBMKUserLocation:(BMKUserLocation *)userLocation