ArcGIS JavaScript API – How to Trigger Hover Event for Map Graphics

arcgis-javascript-apijavascript

I want to trigger an event when the user hovers over a geometry that they drew. I know how to set up hover events for DOM objects, but not for graphic elements within the map window.

Best Answer

The GraphicsLayer has an onMouseOver event (doc). Not sure if that's what you're looking for.

Related Question