Hi,
I want to calculate distance between two markers in Google maps V3. There is function like distanceFrom in V3 as compared to V2.
How to do this in V3???
Thanks..
|
|
Hi, I want to calculate distance between two markers in Google maps V3. There is function like distanceFrom in V3 as compared to V2. How to do this in V3??? Thanks..
|
||
|
|
|
|
If you want to calculate it yourself, then you can use the Haversine formula:
|
||
|
|
|
|
There still is a distanceFrom function on the GLatLng object, but the function parameters have slightly changed between v2 and v3. |
||
|
|
|
|
take a look at: http://code.google.com/apis/maps/documentation/reference.html#GLatLng.GLatLng e.g:
|
||
|
|
|
You can get good accuracy at the cost of increased processing time with the Vincenty algorithm, implemented in Javascript. |
||
|
|