Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

HeDo Shortcode Map Fullwidth

// Add Shortcode
function hedo_shortcode_map_fullwidth( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'type' => 'layer',
			'id' => '1',
		), $atts )
	);
}
add_shortcode( 'map-fullwidth', 'hedo_shortcode_map_fullwidth' );