Fixed
Status Update
Comments
sp...@gmail.com <sp...@gmail.com> #2
It will be better to disable also "scroll wheel" only.
like "scrollwheel = false" on map.
like "scrollwheel = false" on map.
fm...@gmail.com <fm...@gmail.com> #3
In Chrome, this works (with jQuery). FireFox seems to ignore me whatever I say.
$('#streetview canvas').bind('mousewheel', function(){
return false;
});
$('#streetview canvas').bind('mousewheel', function(){
return false;
});
lu...@google.com <lu...@google.com>
lu...@google.com <lu...@google.com>
fm...@gmail.com <fm...@gmail.com> #5
How do I start test this using 3.3? Is there a query string for version?
I have scrollwheel: false in my panoramaOptions but streetview still catches the scrollweel. I assume this is fixed but not live yet inhttp://maps.google.com/maps/api/js?sensor=false
I have scrollwheel: false in my panoramaOptions but streetview still catches the scrollweel. I assume this is fixed but not live yet in
jo...@gmail.com <jo...@gmail.com> #6
I use the below jquery-javascript code to work around double click zoom in my panorama - pretty sure it could be adapted to scroll wheel zoom. zoom: 1 being my prefered zoom stage here, but could be anything.
$("#panorama").dblclick( function(){
panorama.setPov( { heading: panorama.getPov().heading, pitch: panorama.getPov().pitch, zoom: 1 } );
});
$("#panorama").dblclick( function(){
panorama.setPov( { heading: panorama.getPov().heading, pitch: panorama.getPov().pitch, zoom: 1 } );
});
fm...@gmail.com <fm...@gmail.com> #7
Not really johannes, it is catching the scroll event that is not implemented in web browsers consistently. One browser's mousewheel is another's DOMMouseScroll. I could use your code to disable zoom altogether.
I went trough the maps implementation. However once the code went trough closure compiler, it is no fun reading.
Anyway, this issue seems to have been fixed to an extend that "scrolwheel: false" would make sure zoom is no longer triggered on mere scroll. However the mouse is still caught, which is inconsistent with the maps implementation.
Good test case could be actually my pagehttp://www.flatmaterooms.co.uk/room-to-let/london-princes-av . There you can see both: the map and the streetview as you scroll down. Both of them have "scrolwheel: false". However only the streetview would still catch your mouse as you scroll over.
I went trough the maps implementation. However once the code went trough closure compiler, it is no fun reading.
Anyway, this issue seems to have been fixed to an extend that "scrolwheel: false" would make sure zoom is no longer triggered on mere scroll. However the mouse is still caught, which is inconsistent with the maps implementation.
Good test case could be actually my page
[Deleted User] <[Deleted User]> #8
This is still a problem 6.5 years later. The Streetview still catches the mouse, and not able to scroll the webpage when mouse is over the streetview element. How to fix this?
cr...@gmail.com <cr...@gmail.com> #9
Yes, please Google, address this issue. You guys are all about usability and experience, and this seems like an easy win. Right now when someone scrolls past an embedded street view, the scrolling stops and the street view advances. Please apply the same fix you have for non-street view embedded maps.
ch...@gmail.com <ch...@gmail.com> #10
Any news here?
Description
Please allow an option to disable zoom completely (or at least unless called directly via javascript, not user interaction)