views:

73

answers:

1

I want to know the distance of two points or the width and height distance of my current mapview in km unit. Is there any android map api to do that?

A: 

This is not Map API, but the Android SDK's Location class has methods like

distanceBetween

and

distanceTo

Check them out here

Pentium10