我想做以下事情。
- 使用核心位置不断更新用户的位置并将该信息发送到数据库。
我正在创建一个像 badoo 这样的应用程序,所以我需要随时知道用户的位置,以了解他们附近的人。
我做了以下事情:
我将以下代码放入applicationDidFinishLaunchWithOptions
locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
[locationManager startUpdatingLocation];
然后是下面的函数AppDelegate.m
- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
self.currentLocation = newLocation;
// send location to server
if(newLocation.horizontalAccuracy <= 100.0f) { [locationManager stopUpdatingLocation]; }
}
这是最有效的方法吗?
那么我如何使用经度和纬度详细信息和 django 来判断谁在用户附近?
谢谢你的帮助!