Class MouseEventArgs
Specifies the event arguments for mouse move event in maps.
Inherited Members
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class MouseEventArgs : MapsBaseEventArgs
Constructors
MouseEventArgs()
Declaration
public MouseEventArgs()
Properties
IsShapeSelected
Gets or sets a value indicating whether the shape is currently selected.
Declaration
public bool IsShapeSelected { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
This property is useful for determining the selection state of shapes during map interactions.
Latitude
Gets or sets the current latitude value of the map's location.
Declaration
public double Latitude { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the latitude coordinate. |
Remarks
Use this property to determine the geographic latitude at the point of interaction.
Longitude
Gets or sets the current longitude value of the map's location.
Declaration
public double Longitude { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the longitude coordinate. |
Remarks
Use this property to determine the geographic longitude at the point of interaction.
Target
Gets or sets the current mouse event's target DOM element.
Declaration
public DOM Target { get; set; }
Property Value
Remarks
This allows for identification and manipulation of the target element within the map interface.
X
Gets or sets the current mouse's x-coordinate location.
Declaration
public double X { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the horizontal position of the mouse. |
Remarks
Use this to track or act upon horizontal positions of mouse events on the map.
Y
Gets or sets the current mouse's y-coordinate location.
Declaration
public double Y { get; set; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the vertical position of the mouse. |
Remarks
Use this to track or act upon vertical positions of mouse events on the map.