turf-union in all its docs mentions the union of only two (multi)polygons or geojson's
https://www.npmjs.com/package/@turf/union
It would be nice and useful if we could unite several (multi)polygons or geojson's
let union
union = turf.union(poly1, poly2)
union = turf.union(poly1, poly2, poly3)
union = turf.union(poly1, poly2, poly3, ..., polyn)
const polygons = [poly1, poly2, poly3, ..., polyn]
union = turf.union(...polygons)
turf-unionin all its docs mentions the union of only two (multi)polygons or geojson'shttps://www.npmjs.com/package/@turf/union
It would be nice and useful if we could unite several (multi)polygons or geojson's