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