FacetWP map – enable scrollwheel

<?php

// add this to your child themes functions.php file

add_filter( 'facetwp_map_init_args', function ( $args ) {
	$args['init']['scrollwheel'] = true;
	return $args;
} );