Event issue with FireFox 10.x
-
Thursday, March 01, 2012 4:56 PM
I apologize if this has been covered already, but I could not find an answer when searching.
I am coming across an issue with the click and double click events, specifically in FireFox v10.x. It seems that when double clicking on the map, both events fire. In IE 9, only the double click event fires (as expected).
Has anyone come across this issue? Any suggestions?
Thanks,
Mike Garza
http://www.garzilla.net/vemaps- Moved by Richard_BrundrittMicrosoft Employee, Owner Friday, March 16, 2012 6:37 PM (From:Bing Maps: Map Control and Web services Development)
All Replies
-
Friday, March 02, 2012 11:33 PM
There may be issue in firing click vs double click in certain browsers.
One of the work around would be to delay the execution of function in click event & check for click vs dblclick in that function. something as below:function click(e) { dblclick = false; clickEvent = e; setTimeout("displayInfo()", 200); } function dblClick(e) { dblclick = true; dblClickEvent = e; displayInfo(); } function displayInfo() { // logic to execute single or double click }
Hope it helps!
MSFT
Hemant Goyal- Marked As Answer by Richard_BrundrittMicrosoft Employee, Owner Saturday, March 10, 2012 1:54 PM
-
Sunday, March 04, 2012 4:49 PM
Hemant - Thanks for suggestion.

