How can i convert Latitude and longitude in degree/radians? Do you guys any formula or any idea? I want to show it on MapKit. Thanks.....
Since Latitude and Longitude are measured in degrees, you can use the following formula to convert to radians, and back to degrees:
Radians = Degrees * PI / 180
and on the inverse,
Degrees = Radians * 180 / PI