I have a Map object created through the google maps api and I want to figure out the distance (km or mi) between the corners of the current view. I know how to get the coordinates of the corners, is there a utility function to calculate the distance between points?
|
|
From: http://code.google.com/apis/maps/documentation/reference.html#GLatLng
|
||
|
|
|
|
This somewhat depends on how accurate you need your answer to be. The Google Maps API includes a function called distanceFrom, which will probably work just fine for you:
If you need a more accurate answer, you will need a function that takes the shape of the Earth into consideration. I haven't tried it, but this one looks great. |
||
|
|
