New to Telerik UI for BlazorStart a free 30-day trial

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:

C#
public class MapClickEventArgs

Inheritance: objectMapClickEventArgs

Constructors

C#
public MapClickEventArgs()

Properties

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.

C#
public EventArgs EventArgs { get; set; }

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.

C#
public MapLocation Location { get; set; }