How do you calculate the distance between two markers in Google maps V3? (Similar to the distanceFrom function inV2.)
Thanks..
|
How do you calculate the distance between two markers in Google maps V3? (Similar to the Thanks.. |
||||
|
|
|
If you want to calculate it yourself, then you can use the Haversine formula:
|
|||
|
|
|
There actually seems to be a method in GMap3. It's a static method of the It takes as arguments two Make sure you include:
in your head section. The call will be:
|
|||||||||
|
|
There is the computeDistanceBetween() in the new V3 Geometry Library |
|||
|
|
|
You can get good accuracy at the cost of increased processing time with the Vincenty algorithm, implemented in Javascript. |
|||
|
|
|
Here is the c# implementation of the this forumula
|
|||||||||
|
|
Just add this to the beginning of your JavaScript code:
and then use the function like this:
|
||||
|
|
|
With google you can do it using the spherical api, However, if the precision of a spherical projection or a haversine solution is not precise enough for you (e.g. if you're close to the pole or computing longer distances), you should use a different library. Most information on the subject I found on Wikipedia here. A trick to see if the precision of any given algorithm is adequate is to fill in the maximum and minimum radius of the earth and see if the difference might cause problems for your use case. Many more details can be found in this article In the end the google api or haversine will serve most purposes without problems. |
|||
|
|
|
Using PHP, you can calculate the distance using this simple function :
// to calculate distance between two lat & lon
function calculate_distance($lat1, $lon1, $lat2, $lon2, $unit='N')
{
$theta = $lon1 - $lon2;
$dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) + cos(deg2rad($lat1)) * cos(deg2rad($lat2)) * cos(deg2rad($theta));
$dist = acos($dist);
$dist = rad2deg($dist);
$miles = $dist * 60 * 1.1515;
$unit = strtoupper($unit);
if ($unit == "K") {
return ($miles * 1.609344);
} else if ($unit == "N") {
return ($miles * 0.8684);
} else {
return $miles;
}
}
// function ends here
|
|||
|
|
|
Had to do it... The action script way
|
||||
|
|
|
See the distanceFrom function on the GLatLng object; the function parameters have slightly changed between v2 and v3. |
|||||||
|