Get the GPS coordinate given the current location, bearing and distance
问题 I'm trying to get a GPS coordinate given the current location, bearing and distance. But I can't find any related to cocoa-touch. I've found the formula here Get lat/long given current point, distance and bearing Is there an easier method for iOS? Thanks in advance. 回答1: Converted the code in the link to Objective-C. - (double)degreesToRadians:(double)degrees { return degrees * M_PI / 180; } - (double)radiansToDegrees:(double)radians { return radians * 180/ M_PI; } - (CLLocationCoordinate2D