computeArea static method

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

Returns the area of a closed path on Earth.

path A closed path.

return The path's area in square meters.

Implementation

static double computeArea(List<Point> path) => computeSignedArea(path).abs();