Class MarkerClusterMoveEventArgs
Specifies the event arguments for marker cluster move event in maps.
Inherited Members
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class MarkerClusterMoveEventArgs : MapsBaseEventArgs
Constructors
MarkerClusterMoveEventArgs()
Declaration
public MarkerClusterMoveEventArgs()
Properties
Data
Gets or sets the data of the cluster of 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 cluster's data context. |
Remarks
Utilize this data to analyze or react to cluster-specific information during movement events.
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
This indicates the central latitude for the marker cluster's 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
This indicates the central longitude for the marker cluster's 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 which map component (e.g., cluster, marker) triggered the mouse event.
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 at the event's occurrence.
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 at the event's occurrence.