move

type position
init
$( selector ).geomap( {
  move: function( e, geo ) { }
} );
bind
$( selector ).bind( "geomapmove", function( e, geo ) { } );
} );

The move event triggers when the user moves the mouse cursor while the cursor is over the map. However, it only triggers if the user is not currently performing some other action such as panning.

The geo argument is a GeoJSON Point object of the location under the mouse cursor in map coordinates.