menu

Blazor

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

    Show / Hide Table of Contents

    Class MarkerMouseLeaveEventArgs

    Specifies the event arguments for marker leave event in maps.

    Inheritance
    System.Object
    MarkerMouseLeaveEventArgs
    Namespace: Syncfusion.Blazor.Maps
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class MarkerMouseLeaveEventArgs : Object

    Constructors

    MarkerMouseLeaveEventArgs()

    Declaration
    public MarkerMouseLeaveEventArgs()

    Properties

    Data

    Gets the dictionary of data associated with the marker that was left.

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

    A System.Collections.Generic.Dictionary<, > containing key-value pairs representing the marker's data context.

    Remarks

    Use this data to access specific attributes and states of the marker at the time the mouse leaves its area.

    IsTouch

    Gets or sets a value indicating whether the event is triggered by a touch gesture.

    Declaration
    public bool IsTouch { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if the event was triggered by a touch gesture; otherwise, false.

    Remarks

    Differentiate between touch-based interactions and standard mouse events for responsive design implementations.

    Latitude

    Gets the latitude value of the marker's location.

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

    A double value representing the latitude coordinate.

    Remarks

    Useful for identifying the precise geographic position of the marker on the map.

    LayerIndex

    Gets the index of the layer containing the marker.

    Declaration
    public int LayerIndex { get; }
    Property Value
    Type Description
    System.Int32

    An integer representing the layer index.

    Remarks

    Use the layer index to differentiate between different layers on which markers are rendered.

    Longitude

    Gets the longitude value of the marker's location.

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

    A double value representing the longitude coordinate.

    Remarks

    Useful for identifying the precise geographic position of the marker on the map.

    MarkerIndex

    Gets the index of the marker group to which the marker belongs.

    Declaration
    public int MarkerIndex { get; }
    Property Value
    Type Description
    System.Int32

    An integer representing the marker group's index.

    Remarks

    Marker groups allow categorization and special handling for multiple markers within the same group.

    X

    Gets the x-coordinate in pixels of the mouse's position when leaving the marker.

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

    A double value representing the x-coordinate position.

    Remarks

    Use these coordinates to track mouse movement in relation to the map's rendering of the marker.

    Y

    Gets the y-coordinate in pixels of the mouse's position when leaving the marker.

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

    A double value representing the y-coordinate position.

    Remarks

    Use these coordinates to track mouse movement in relation to the map's rendering of the marker.

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