Hi James,
In Supreme the sidebar listing map is rendered via shortcode so it does not taking affect map view parameter from widget settings.
Add following code snippets in your child theme functions.php file OR add it in via any snippet plugin.
function _gd_custom_supreme_listing_map_args( $args = array() ) {
$args['maptype'] = 'TERRAIN'; // HYBRID, ROADMAP, SATELLITE, TERRAIN
$args['zoom'] = 14; // number between 1 to 19
$args['autozoom'] = true; // true or false
$args['scrollwheel'] = true; // true or false
$args['sticky'] = true; // true or false
$args['enable_marker_cluster'] = true; // true or false
return $args;
}
add_filter ('geodir_map_options_gd_listing_map', '_gd_custom_supreme_listing_map_args', 10, 1 );
You can change parameters values as you want.
Let us know.
Thanks,
Kiran