Compute the merged bounding box of multiple coordinate buffers.
Input: a JS Array of Float64Array coordinate buffers.
Output: Float64Array of [minLng, minLat, maxLng, maxLat].
Equivalent to calling computeBounds on each buffer individually
and then merging the results, but processes all buffers in a single pass
for better cache locality.
Compute the merged bounding box of multiple coordinate buffers.
Input: a JS
ArrayofFloat64Arraycoordinate buffers. Output:Float64Arrayof[minLng, minLat, maxLng, maxLat].Equivalent to calling
computeBoundson each buffer individually and then merging the results, but processes all buffers in a single pass for better cache locality.