Returns the distance between two LatLngs, in meters.
static double computeDistanceBetween(Point from, Point to) => computeAngleBetween(from, to) * MathUtils.earthRadius;