Class BubbleClickEventArgs
Specifies the event argument for bubble click event in maps.
Inherited Members
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class BubbleClickEventArgs : MapsBaseEventArgs
Constructors
BubbleClickEventArgs()
Declaration
public BubbleClickEventArgs()
Properties
Data
Gets or sets the current data for the bubble in event argument.
Declaration
public Dictionary<string, string> Data { get; set; }
Property Value
Type |
---|
System.Collections.Generic.Dictionary<System.String, System.String> |
Latitude
Gets or sets the current latitude value of maps location.
Declaration
public double Latitude { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Longitude
Gets or sets the current longitude value of maps location.
Declaration
public double Longitude { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Target
Gets or sets the current mouse event target id.
Declaration
public string Target { get; set; }
Property Value
Type | Description |
---|---|
System.String | Accepts the string value. |
X
Gets or sets the x position of the click event.
Declaration
public double X { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Y
Gets or sets the y position of the click event.
Declaration
public double Y { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |