1

我使用 CLLocationCoordinate2D 获取用户的当前位置,然后想将其用于 Parse 的 nearGeoPoint。

我知道我可以简单地使用 geoPointForCurrentLocationInBackground 但我宁愿用 CLLocationCoordinate2D 检索。

4

1 回答 1

6

您可以使用geoPointWithLatitude:longitude:PFGeoPoint 类的初始化程序。给它你的 CLLocationCoordinate2D 的纬度和经度值,你就会得到你的 PFGeoPoint。

例如

PFGeoPoint *geoPoint = [PFGeoPoint geoPointWithLatitude:coordinate.latitude longitude:coordinate.longitude];
于 2015-08-10T09:05:50.570 回答