Class
MapShapeClickEventArgs

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:

cs-api-definition
public class MapShapeClickEventArgs

Inheritance: objectMapShapeClickEventArgs

Constructors

MapShapeClickEventArgs()

Declaration

cs-api-definition
public MapShapeClickEventArgs()

Properties

DataItem

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.

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 shape interaction handling scenarios.

Declaration

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

Property Value

EventArgs

GeoJsonDataItem

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.

Declaration

cs-api-definition
public Dictionary<string, object> GeoJsonDataItem { get; set; }

Property Value

Dictionary<string, object>