ClassMapShapeClickEventArgs
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:
public class MapShapeClickEventArgs
Inheritance: objectMapShapeClickEventArgs
Constructors
MapShapeClickEventArgs()
Declaration
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.
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.
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
public Dictionary<string, object> GeoJsonDataItem { get; set; }
Property Value