Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using google map api v2 in my android application, I am able to show the map and put markers on it, but now I am stuck with the problem in which I need to find out the distance between two markers or points placed on map, I have already gone through the docs but didn't find anything helpful in this case.

If anyone knows how to solve this then please help me.

Thanks

share|improve this question

5 Answers

up vote 2 down vote accepted

You can use the following method that will give you acurate result

  public double CalculationByDistance(GeoPoint StartP, GeoPoint EndP) {
    int Radius=6371;//radius of earth in Km         
    double lat1 = StartP.getLatitudeE6()/1E6;
    double lat2 = EndP.getLatitudeE6()/1E6;
    double lon1 = StartP.getLongitudeE6()/1E6;
    double lon2 = EndP.getLongitudeE6()/1E6;
    double dLat = Math.toRadians(lat2-lat1);
    double dLon = Math.toRadians(lon2-lon1);
    double a = Math.sin(dLat/2) * Math.sin(dLat/2) +
    Math.cos(Math.toRadians(lat1)) * Math.cos(Math.toRadians(lat2)) *
    Math.sin(dLon/2) * Math.sin(dLon/2);
    double c = 2 * Math.asin(Math.sqrt(a));
    double valueResult= Radius*c;
    double km=valueResult/1;
    DecimalFormat newFormat = new DecimalFormat("####");
    kmInDec =  Integer.valueOf(newFormat.format(km));
    meter=valueResult%1000;
    meterInDec= Integer.valueOf(newFormat.format(meter));
    Log.i("Radius Value",""+valueResult+"   KM  "+kmInDec+" Meter   "+meterInDec);

    return Radius * c;
 }
share|improve this answer
Thanks @Usman, i will try it – Salman Khan Jan 18 at 9:19
my pleasure ... – Usman Kurd Jan 18 at 11:49

The distance between two ge ocoordinate can be found by using Haversine formula. This formula is effective to calculate distance in a spherical body i.e earth in our case. For more information about this formula and its use CLICK HERE

share|improve this answer

In Google Map API V2 You have LatLng objects so you can't use distanceTo (yet).

You can then use the following code considering oldPosition and newPosition are LatLng objects :

// The computed distance is stored in results[0].
//If results has length 2 or greater, the initial bearing is stored in results[1].
//If results has length 3 or greater, the final bearing is stored in results[2].
float[] results = new float[1];
Location.distanceBetween(oldPosition.latitude, oldPosition.longitude,
                newPosition.latitude, newPosition.longitude, results);

For more informations about the Location class see this link

share|improve this answer

Refer this link Salman.

http://android-example-code.blogspot.in/p/map-api-in-android.html

May be this will help you.

share|improve this answer
thanks @thampi for the link, but i am looking for the solution using the new map api(google map api v2) for android....... – Salman Khan Jan 18 at 9:21
distance = marker1.getPoint().distanceFrom(marker2.getPoint()); You can find it by using this method also – thampi joseph Jan 18 at 10:07
1  
thanks again for your reply but i cannot find any method like getPoint() with markers so it's not working for me :( – Salman Khan Jan 18 at 10:55

You can do:

location1.distanceTo(location2);

And you will get the distance in meters between location1 and location2 in meters.

share|improve this answer
You cannot do that because in Google API V2 there's no Location objects – Fr4nz Apr 26 at 7:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.