在Android google map中,有时候会碰到计算两地的距离,下面的辅助类就可以帮助你计算距离: public class DistanceHelper { /** Names for the units to use */ public final static int KILOMETERS = 0; public final static int STATUTE_MILES = 1; public final static int NAUTICAL_MILES = 2; /** Ra…