turf-boxaround
v1.0.3
Published
Creates a box around any GeoJSON feature or feature collection.
Downloads
5
Readme
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);