computeLength method

double computeLength(
  1. List<Point<double>> path
)

Returns the length of the given path, in meters.

Implementation

double computeLength(List<Point<double>> path) =>
    SphericalUtils.computeLength(path);