我正在构建一个PFQuery以使用户在半径范围内(200米),我已经在Parse自定义类中设置了一个Location列,其中我存储了地理位置。我得到了用户,但是当我通过Haversine公式手动计算他们的距离时,结果是超过200米。这是我的Pfquery:
PFQuery *query = [PFQuery queryWithClassName:@"UserLocations"];
[query whereKey:@"Location" nearGeoPoint:geopoint withinKilometers:0.2];
[query findObjectsInBackgroundWithBlock:^(NSArray *objects, NSError *error) {
compBlock(objects,error);
}];
我做错了什么?