Greetings,
I have a web map application that I am trying to optimize for touchscreens. I have a reverse geocode that brings up an info window with address details. On touchscreens, when I click the close button on the info window, another map click event is simultaneously fired... which subsequently revers geocodes another address and info window. How can I close the info window without registering a map click event. it is conceivable that the user would want to reverse geocode multiple consecutive locations, just not when they are closing the info window button.
Thanks,
Tyler
Solved! Go to Solution.
Tyler,
You can use dojo on pausable to pause the map click event handler when the close button is fired, or just use event.stopPropagation().
Tyler,
You can use dojo on pausable to pause the map click event handler when the close button is fired, or just use event.stopPropagation().