computeArea method

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

Returns the area enclosed by path, in square meters.

Implementation

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