Class MarkerMoveEventArgs
Specifies the event arguments for marker move event in maps.
Inherited Members
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class MarkerMoveEventArgs : MapsBaseEventArgs
Constructors
MarkerMoveEventArgs()
Declaration
public MarkerMoveEventArgs()
Properties
Data
Gets or sets the data of the marker in event argument.
Declaration
public Dictionary<string, string> Data { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.String, System.String> | A dictionary containing key-value pairs representing the marker's data context. |
Remarks
Access the marker data to understand the properties and state of the marker during movement.
IsTouch
Gets or sets a value indicating whether the event is triggered by a touch gesture.
Declaration
public bool IsTouch { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
Helpful in determining the type of user input interaction causing the event.
Latitude
Gets or sets the current latitude value of map's location.
Declaration
public double Latitude { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts a double value. |
Remarks
Indicates the latitude at the marker's current position on the map.
Longitude
Gets or sets the current longitude value of map's location.
Declaration
public double Longitude { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts a double value. |
Remarks
Indicates the longitude at the marker's current position on the map.
Target
Gets or sets the current mouse event target id.
Declaration
public string Target { get; set; }
Property Value
Type | Description |
---|---|
System.String | A string value representing the DOM element targeted by the mouse event. |
Remarks
Identifies the map element associated with the current marker movement.
X
Gets or sets the current mouse x location.
Declaration
public double X { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts a double value. |
Remarks
Represents the horizontal position of the mouse pointer during the marker move.
Y
Gets or sets the current mouse y location.
Declaration
public double Y { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts a double value. |
Remarks
Represents the vertical position of the mouse pointer during the marker move.