havDistance static method
Returns hav() of distance from (lat1, lng1) to (lat2, lng2) on the unit sphere.
Implementation
static num havDistance(num lat1, num lat2, num dLng) =>
MathUtil.hav(lat1 - lat2) + MathUtil.hav(dLng) * cos(lat1) * cos(lat2);