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
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.
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.
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.
public Dictionary<string, object> GeoJsonDataItem { get; set; }