views:

20

answers:

1

Hi,

May I know how can i disable double click on google map so that the info window will not close when i double click on google map? Can it be done through google map api? Thank you.

Benjamin.

A: 

It cannot be done, you would essentially have to block or prevent the event from happening.

You could try something like createInterceptor() like in EXT JS. This would fire before the event is fired, and you can return false to prevent the actual event to fire, but I am not sure it will prevent the code from executing before the event is fired within that code.

CrazyEnigma