krabouilleur opened a new issue, #18091:
URL: https://github.com/apache/echarts/issues/18091

   ### What problem does this feature solve?
   
   Hi,
   I have created a map using "registerMap".
   The svg is displayed.
   ```
   $.get(
     ROOT_PATH + '/data/asset/geo/MacOdrum-LV5-floorplan-web.svg',
     function (svg) {
       
       echarts.registerMap('toto', { svg: svg });
   
       myChart.on('geoRoam', (event) => {
         // no mousemove event (but: click.... is ok)
       });
     }
   );
   ```
   And I've added a serie of type "lines".
   
   I get event when I click on a line using:
   ```
   myChart.on('click', 'series.lines', function (params) {
     ....
   });
   ```
   
   But I would want to get the event "mousemove" when the mouse move on the map.
   
   this is not working:
   ```
   myChart.on('mousemove', 'geo', function (params) {
     // nothing
   });
   ```
   
   Is there a way to get the "mousemove" event on a map ? (and the mousemove 
must not be triggered when my mouse is hover  a line)
   
   ### What does the proposed API look like?
   
   Is there a way to get the "mousemove" event on a map ? (and the mousemove 
must not be triggered when my mouse is hover  a line)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org

Reply via email to