computeArea static method

num 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 num computeArea(List<Point> path) => computeSignedArea(path).abs();