• Resolved WP Codeus

    (@wpcodeus)


    Hello,

    Is there an option or hook that can be used to disable the scroll zoom on the Google Map? We’re using the shortcode to display the map.

    Thanks in advance!

Viewing 1 replies (of 1 total)
  • Thread Starter WP Codeus

    (@wpcodeus)

    Hey @eyal,

    I was able to resolve this.

    For anyone looking for the same solution, please see below:

    function gmw_disable_mousescroll_zoom( $map_elements, $gmw ) {
    
    	if ( 2 == $gmw['ID'] ) { // Change form ID here
    		$map_elements['map_options']['scrollwheel'] = false;
    	}
    
    	return $map_elements;
    }
    add_filter( 'gmw_map_element', 'gmw_disable_mousescroll_zoom', 99, 2 );
    • This reply was modified 2 years, 7 months ago by WP Codeus.
Viewing 1 replies (of 1 total)
  • The topic ‘Disable Map Scroll Zoom’ is closed to new replies.