greatCircleDistanceKm method

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

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

Implementation

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