Wasn't it Chris Kilgus who wrote: >Thanks, i got it to work, but it is strange that the API initiate a >click event on a dblclick event.
There's nothing the API can do about it. The mouse driver in the operating system decides when to generate a "click" or "double click" event, and the browser passes that info to the API. At one point I did some work with computer users with disabilities, and some of them had to set the double click delay to be very slow. Most Windows mouse drivers allow you to set the delay to be about a second, but there are special mouse divers for disabled users that can be set to have longer delays. Adding your own timeout to cope with that sort of situation would make the response to single clicks unreasonably slow for able bodied users. The only nice solution is to choose click and dblclick actions that don't conflict with each other. -- Mike Williams http://econym.org.uk/gmap --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" 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-API?hl=en -~----------~----~----~----~------~----~------~--~---
