在Objective-C中,我们可以使用geoPointWithLatitude将经度和纬度转换为PFGeoPoint。
但我找不到任何快速完成此操作的方法。

提前致谢。

最佳答案

使用此代码。可能会帮助您。

var descLocation: PFGeoPoint = PFGeoPoint()

descLocation.latitude = coord.latitude
descLocation.longitude = coord.longitude

关于swift - 快速将经纬度转换为PFGeoPoint,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32350204/

10-11 08:27