Support

Account

Home Forums Feature Requests Disable scrollWheel zoom in Google Maps field in admin Reply To: Disable scrollWheel zoom in Google Maps field in admin

  • Got this working with maps on the front-end. elliots example code was extremely helpful:

    // vars
            var args = {
                zoom		                : 16,
                center		                : new google.maps.LatLng(0, 0),
                mapTypeId	                : google.maps.MapTypeId.ROADMAP,
                scrollwheel                 : false,
     
                mapTypeControl              : true,
                mapTypeControlOptions: {
                    style                   : google.maps.MapTypeControlStyle.HORIZONTAL_BAR,
                    position                : google.maps.ControlPosition.TOP_LEFT
                },
     
                zoomControl                 : true,
                zoomControlOptions: {
                    style                   : google.maps.ZoomControlStyle.SMALL,
                    position                : google.maps.ControlPosition.LEFT_CENTER
                }
            };
     
     
    // create map
            var map = new google.maps.Map( $el[0], args);