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

Event arguments for shape click interactions that provide access to shape data and GeoJSON information. Enables handling of user interactions with map shapes for displaying details, editing geometry, or triggering location-based actions.

Definition

Namespace:Telerik.Blazor.Components

Assembly:Telerik.Blazor.dll

Syntax:

C#
public class MapShapeClickEventArgs

Inheritance: objectMapShapeClickEventArgs

Constructors

C#
public MapShapeClickEventArgs()

Properties

The data object associated with the clicked shape when using bubble layer visualization. Contains the original data item properties and values for bubble-based shape representations.

C#
public object DataItem { get; set; }

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

C#
public EventArgs EventArgs { get; set; }

The GeoJSON feature data associated with the clicked shape when using shape layer visualization. Contains geometric coordinates, properties, and metadata for vector-based geographic features in standard GeoJSON format.

C#
public Dictionary<string, object> GeoJsonDataItem { get; set; }