Show terrain map by default

<?php

// add this to your child themes functions.php file
add_filter( 'facetwp_map_init_args', function ( $args ) {
	$args['mapTypeId'] = 'terrain';
	return $args;
} );