Class
MapMarkerClickEventArgs

Event arguments for marker click interactions that provide access to the clicked marker's data and mouse event details. Enables handling of user interactions with specific map markers for displaying details, editing data, or triggering custom actions.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class MapMarkerClickEventArgs

Inheritance: objectMapMarkerClickEventArgs

Constructors

MapMarkerClickEventArgs()

Declaration

cs-api-definition
public MapMarkerClickEventArgs()

Properties

DataItem

The data object associated with the clicked marker from the bound data source. Contains the original data item properties and values, allowing access to marker-specific information for display or processing.

Declaration

cs-api-definition
public object DataItem { get; set; }

Property Value

object

EventArgs

The original DOM mouse event details including button information, coordinates, and modifier keys. Provides access to native browser event properties for advanced marker interaction handling scenarios.

Declaration

cs-api-definition
public EventArgs EventArgs { get; set; }

Property Value

EventArgs