lerp static method

LatLng lerp(
  1. LatLng a,
  2. LatLng b,
  3. double t
)

Linear interpolation of two LatLngs.

Implementation

static LatLng lerp(LatLng a, LatLng b, double t) {
  final lat = l.lerp(a.latitude, b.latitude, t);
  final lng = l.lerp(a.longitude, b.longitude, t);

  return LatLng(lat, lng);
}