Class MarkerMouseLeaveEventArgs
Specifies the event arguments for marker leave event in maps.
Inheritance
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class MarkerMouseLeaveEventArgs : Object
Constructors
MarkerMouseLeaveEventArgs()
Declaration
public MarkerMouseLeaveEventArgs()
Properties
Data
Returns the corresponding value of the marker from the data source.
Declaration
public Dictionary<string, string> Data { get; }
Property Value
Type |
---|
System.Collections.Generic.Dictionary<System.String, System.String> |
IsTouch
Gets or sets a value indicating whether or not the event is triggered by a touch gesture.
Declaration
public bool IsTouch { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Latitude
Returns the latitude value of the marker.
Declaration
public double Latitude { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
LayerIndex
Returns the index number of the layer in which the marker is available.
Declaration
public int LayerIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
Longitude
Returns the longitude value of the marker.
Declaration
public double Longitude { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
MarkerIndex
Returns the index number of the marker group in which the marker is available.
Declaration
public int MarkerIndex { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Accepts an integer value. |
X
Returns the pixel value of the x position of the marker.
Declaration
public double X { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Y
Returns the pixel value of the y position of the marker.
Declaration
public double Y { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |