menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class BubbleClickEventArgs - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class BubbleClickEventArgs

    Specifies the event argument for bubble click event in maps.

    Inheritance
    System.Object
    MapsBaseEventArgs
    BubbleClickEventArgs
    BubbleMoveEventArgs
    Inherited Members
    MapsBaseEventArgs.Cancel
    Namespace: Syncfusion.Blazor.Maps
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class BubbleClickEventArgs : MapsBaseEventArgs

    Constructors

    BubbleClickEventArgs()

    Declaration
    public BubbleClickEventArgs()

    Properties

    Data

    Gets or sets the current data for the bubble in event argument.

    Declaration
    public Dictionary<string, string> Data { get; set; }
    Property Value
    Type Description
    System.Collections.Generic.Dictionary<System.String, System.String>

    A dictionary containing key-value pairs representing the bubble's data context.

    Remarks

    Utilize the data dictionary to access attributes related to the bubble element that was clicked.

    Latitude

    Gets or sets the current latitude value of map's location.

    Declaration
    public double Latitude { get; set; }
    Property Value
    Type Description
    System.Double

    Accepts a double value for the latitude.

    Remarks

    This property indicates the geographical location of the bubble on the map.

    Longitude

    Gets or sets the current longitude value of map's location.

    Declaration
    public double Longitude { get; set; }
    Property Value
    Type Description
    System.Double

    Accepts a double value for the longitude.

    Remarks

    This property indicates the geographical location of the bubble on the map.

    Target

    Gets or sets the current mouse event target id.

    Declaration
    public string Target { get; set; }
    Property Value
    Type Description
    System.String

    A string representing the target element's id at the mouse event location.

    Remarks

    Use the target id to identify which part of the map triggered the event.

    X

    Gets or sets the x position of the click event.

    Declaration
    public double X { get; set; }
    Property Value
    Type Description
    System.Double

    Accepts a double value for the x-coordinate.

    Remarks

    This coordinate helps resolve the position where the click event occurred within the map's viewport.

    Y

    Gets or sets the y position of the click event.

    Declaration
    public double Y { get; set; }
    Property Value
    Type Description
    System.Double

    Accepts a double value for the y-coordinate.

    Remarks

    This coordinate helps resolve the position where the click event occurred within the map's viewport.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved