01/05/2018 at 10:47 am
#446183
Keymaster
@ leopart
Untested, nut I think you should be able to hook into the cn_output_atts_map filter and change the maptype property to SATELLITE. Here’s an example:
add_filter( 'cn_output_atts_map', 'cn_output_atts_map_sat_view' );
function cn_output_atts_map_sat_view( $atts ) {
$atts['maptype'] = 'SATELLITE';
return $atts;
}
Hope that helps!
