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