I haven't tested this, but you may try to leave the map draggable, and handle the dragstart event in order to move your page (and trigger the dragend event afterward or something). You might use the window.scrollTo() to move your page (while dragging the map).
On Mar 8, 6:28 pm, unoedx <[email protected]> wrote: > Hi all, > I have a problem with a mobile website, i want the map to be fixed (so i've > set draggable to false) but the problem is that when the user start to > scroll with a finger from inside the map nothing happen, and i would like > that the page scrolls down (tested on iOs and Android 2.1), can i do that? > > the url of the site is:http://www.tipass.ch/main_records/view/110/eng > > and the map is instantiate as follow: > var map = new google.maps.Map(document.getElementById('mapCanvas'), { > zoom: 15, > center: latLng, > scrollwheel: false, > draggable: true, > mapTypeId: google.maps.MapTypeId.ROADMAP, > scaleControl: true, > panControl: false, > }); > > thank you > > unoedx -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
