gpt4 book ai didi

iphone - 使用 MapKit 检索 UserLocation 坐标

转载 作者:太空狗 更新时间:2023-10-30 03:46:58 26 4
gpt4 key购买 nike

我在我的应用程序中使用 MapKit 并使用 disaply 用户位置


[mapview setShowUserLocation:YES];

我想用userLocation坐标设置region.center.latitude和region.center.longitude,怎么办?

最佳答案

这是我的答案,我尝试了类似的方法并有效:


//inside my ViewDidLOad
locManager = [[CLLocationManager alloc] init];
[locManager setDelegate:self];
[locManager setDesiredAccuracy:kCLLocationAccuracyBest];
[locManager startUpdatingLocation];

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {<br/>
CLLocationCoordinate2D loc = [newLocation coordinate];
[maptView setCenterCoordiante:loc];

}

关于iphone - 使用 MapKit 检索 UserLocation 坐标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2175998/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com