greatCircleDistanceM method

double greatCircleDistanceM(
  1. Pointer<LatLng> a,
  2. Pointer<LatLng> b
)

@brief "great circle distance" between pairs of LatLng points in meters

Implementation

double greatCircleDistanceM(
  ffi.Pointer<LatLng> a,
  ffi.Pointer<LatLng> b,
) {
  return _greatCircleDistanceM(
    a,
    b,
  );
}