私のクライアントは、ユーザーの現在の位置を表示しているときに警告メッセージを表示する必要はなく、マップビューでユーザーの緯度と経度を取得する方法も求めています。
マップビューに警告メッセージを表示せずに誰か助けてください。緯度と経度を取得するにはどうすればよいですか。
- (void)viewDidLoad
{
[super viewDidLoad];
locationManager = [[CLLocationManager alloc]init];
//display current location
[self.mapview setShowsUserLocation:YES];
//get the current location latitude and algitude
NSString *lati = [NSString stringWithFormat:@"%f",locationManager.location.coordinate.latitude];
NSString *lang = [NSString stringWithFormat:@"%f",locationManager.location.coordinate.longitude];
NSLog(@"lati : %@",lati);
NSLog(@"langi : %@",lang);
}