Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 448 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 448 Bytes

turf-boxaround

BoxAround

Finds a box around any feature or feature collection.

Parameters

  • Feature The shapes to get the box around.
  • options.paddingMeters The meters of padding to add to the shape on all sides. Defaults to 10,000 Meters

Examples

const polygon = turf.polygon([[
  [128, -26],
  [141, -26],
  [141, -21],
  [128, -21],
  [128, -26]
]]);

const boxPolygon = boxAround(polygon);