Class MouseMoveEventArgs
Specifies the event arguments for OnMouseMove event in the Maps.
Inheritance
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class MouseMoveEventArgs : Object
Constructors
MouseMoveEventArgs()
Declaration
public MouseMoveEventArgs()
Properties
Latitude
Gets the current latitude value of the location where the mouse pointer is moved.
Declaration
public double Latitude { get; }
Property Value
Type | Description |
---|---|
System.Double | Returns a double value of the latitude. |
Remarks
This property provides the latitude at the cursor's position on the map.
Longitude
Gets the current longitude value of the location where the mouse pointer is moved.
Declaration
public double Longitude { get; }
Property Value
Type | Description |
---|---|
System.Double | Returns a double value of the longitude. |
Remarks
This property provides the longitude at the cursor's position on the map.
Target
Gets the DOM of the current target element over which the mouse is positioned on the Maps.
Declaration
public DOM Target { get; }
Property Value
Remarks
The target element allows access to the DOM structure interacted with during the event.
X
Gets the current horizontal position value of the location where the mouse pointer is moved.
Declaration
public double X { get; }
Property Value
Type | Description |
---|---|
System.Double | Returns a double value for the x-coordinate. |
Remarks
This coordinate represents the cursor's horizontal position on the map.
Y
Gets the current vertical position value of the location where the mouse pointer is moved.
Declaration
public double Y { get; }
Property Value
Type | Description |
---|---|
System.Double | Returns a double value for the y-coordinate. |
Remarks
This coordinate represents the cursor's vertical position on the map.