Is it possible to send two lat long points to google to calculate the distance between the two?
|
|
If you're looking to use the v3 google maps API, here is a function I use:
Note: you must add
Now the function:
|
||||
|
|
|
What you're after is the Haversine formula. You don't need Google Maps to do this, you can work it out separately. There's a script to do this (in JavaScript) here. |
|||
|
|
|
Yes google can do this here's a piece of java script that get's the distance in km's for two points
function initialize() {
if (GBrowserIsCompatible()) {
map = new GMap2(document.getElementById("map_canvas"));
map.setCenter(new GLatLng(52.6345701, -1.1294433), 13);
map.addControl(new GLargeMapControl());
map.addControl(new GMapTypeControl());
geocoder = new GClientGeocoder();
// NR14 7PZ
var loc1 = new GLatLng(52.5773139, 1.3712427);
// NR32 1TB
var loc2 = new GLatLng(52.4788314, 1.7577444);
alert(loc2.distanceFrom(loc1) / 1000);
}
}
|
|||
|
|
|
A quite easy to parse web page is (e.g.): http://boulter.com/gps/distance/?from=51.5329855+-0.1303506&to=40.757584+-73.985642&units=m For people who only want a quick measure of distance, check out this gadget. However, it only uses the great circle calculation. As Rob notes, Google have added it, but they still only use the great circle formula, which can be inaccurate by 1/300. |
||||
|
|
|
And the distance cal in c#:
|
|||
|
|
|
Its been many years since I did this but you could use the Great Circle Distance |
|||
|
|
|
If you just want to get the distance as a number, try something like this.
|
|||
|
|
|
there is a handy function http://code.google.com/apis/maps/documentation/reference.html#GLatLng.distanceFrom basically create 2 GlatLng objects then use the above method |
|||