Class
MapClickEventArgs

Event arguments for map click interactions that provide location coordinates and mouse event details. Enables handling of user clicks on the map surface for implementing custom behaviors like adding markers or displaying information.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

cs-api-definition
public class MapClickEventArgs

Inheritance: objectMapClickEventArgs

Constructors

MapClickEventArgs()

Declaration

cs-api-definition
public MapClickEventArgs()

Properties

EventArgs

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

Declaration

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

Property Value

EventArgs

Location

The geographic coordinates (latitude and longitude) where the user clicked on the map. Use these coordinates to determine the exact map location for placing markers, retrieving data, or other location-based operations.

Declaration

cs-api-definition
public MapLocation Location { get; set; }

Property Value

MapLocation