gpt4 book ai didi

iPhone SDK : Track users location using GPS

转载 作者:行者123 更新时间:2023-12-03 20:19:04 26 4
gpt4 key购买 nike

我有一些关于 CoreLocation 和 GPS 的问题。

首先,核心定位中是用什么方法来不断获取用户当前坐标的?应该以什么时间间隔检索这些内容?

其次,每次收到这些坐标时是否应该将其插入 NSMutableArray 中,以便坐标数组代表用户路径?

谢谢,只是想开始让我注意这个问题。

最佳答案

非常简短的版本:

首先,采用<CLLocationManagerDelegate> .h 中的协议(protocol)和 #import <CoreLocation/CoreLocation.h> .

然后在 .m go 中:

- (void)viewDidLoad {
locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyBest;
[locationManager startUpdatingLocation];
}


-(void)locationManager:(CLLocationManager *)manager
didUpdateToLocation:(CLLocation *)newLocation
fromLocation:(CLLocation *)oldLocation
{
CLLocationCoordinate2D here = newLocation.coordinate;
NSLog(@"%f %f ", here.latitude, here.longitude);
}

您的-(void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation每当 Core Location 有话要对你说时,方法就会被 ping 到,这应该每隔几秒发生一次。这些 CLLocation 对象包含有关准确性的信息,因此您可以筛选该方法中的优点。

请务必调用[locationManager stopUpdatingLocation]然后[locationManager release]在某一点!

祝你好运,找到自己!

关于iPhone SDK : Track users location using GPS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2866292/

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