Since a few days our users can only zoom when they hit the \"ctrl\" key while scrolling which doesn\'t make sense in our applications.
Is there a way to allow zoomi
Add gestureHandling: 'greedy' to your map options during instantiation.
gestureHandling: 'greedy'
E.g:
var map = new google.maps.Map(document.getElementById('map'), { center: {0, 0}, zoom: 8, gestureHandling: 'greedy' }); }