views:

30

answers:

1

This is a demo dragging on google maps v3,

but ,it can't work good at chrome and safari ,

So , how to change it ?

thanks

A: 

it is ok now:

.bind('mouseenter',function(){
                map.setOptions({
                    draggable:false
                })
            })
            .bind('mouseleave',function(){
                map.setOptions({
                    draggable:true
                })
            })
zjm1126