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