Event issue with FireFox 10.x
-
2012年3月1日 16:56
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- 移動 Richard_BrundrittMicrosoft Employee, Owner 2012年3月16日 18:37 (From:Bing Maps: Map Control and Web services Development)
すべての返信
-
2012年3月2日 23:33
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- 回答としてマーク Richard_BrundrittMicrosoft Employee, Owner 2012年3月10日 13:54
-
2012年3月4日 16:49
Hemant - Thanks for suggestion.

