Version: 0.0.00.0.10.0.20.1.00.1.10.1.20.1.30.1.40.1.50.1.60.1.70.2.00.2.10.2.20.2.30.2.40.3.00.3.10.3.20.3.30.3.40.3.50.3.60.3.70.4.00.6.0-rc10.6.0-rc20.6.0-rc30.6.0-rc40.6.0-rc50.6.0-rc60.6.0-rc70.6.0-rc80.6.0-rc90.6.00.6.10.6.20.6.30.6.40.6.50.6.60.6.70.6.80.7.00.7.10.7.20.7.30.7.40.7.50.7.60.7.70.7.80.7.90.7.100.7.110.7.120.8.00.8.10.8.20.9.00.9.10.9.20.10.00.11.00.11.10.11.20.11.30.11.40.11.50.11.60.11.70.11.80.11.90.11.100.11.110.11.120.11.130.11.140.11.150.11.160.11.170.11.180.11.190.11.200.11.210.12.00.12.10.12.20.13.00.13.10.13.20.14.00.15.00.16.0
/**
* Returns a bounding box representing the event's location.
*
* @param {Event} mapEvent - Mapbox GL JS map event, with a point properties.
* @return {Array<Array<number>>} Bounding box.
*/
function mapEventToBoundingBox(mapEvent, buffer = 0) {
return [
[mapEvent.point.x - buffer, mapEvent.point.y - buffer],
[mapEvent.point.x + buffer, mapEvent.point.y + buffer]
];
}
module.exports = mapEventToBoundingBox;