alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Class MarkerMoveEventArgs

    Specifies the event arguments for marker move event in maps.

    Inheritance
    object
    MapsBaseEventArgs
    MarkerMoveEventArgs
    MarkerClickEventArgs
    Inherited Members
    MapsBaseEventArgs.Cancel
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Syncfusion.Blazor.Maps
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public class MarkerMoveEventArgs : MapsBaseEventArgs

    Constructors

    MarkerMoveEventArgs()

    Declaration
    public MarkerMoveEventArgs()

    Properties

    Data

    Gets or sets the data of the marker in event argument.

    Declaration
    public Dictionary<string, string> Data { get; set; }
    Property Value
    Type Description
    Dictionary<string, string>

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

    Remarks

    Access the marker data to understand the properties and state of the marker during movement.

    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
    bool

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

    Remarks

    Helpful in determining the type of user input interaction causing the event.

    Latitude

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

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

    Accepts a double value.

    Remarks

    Indicates the latitude at the marker's current position 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
    double

    Accepts a double value.

    Remarks

    Indicates the longitude at the marker's current position on the map.

    Target

    Gets or sets the current mouse event target id.

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

    A string value representing the DOM element targeted by the mouse event.

    Remarks

    Identifies the map element associated with the current marker movement.

    X

    Gets or sets the current mouse x location.

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

    Accepts a double value.

    Remarks

    Represents the horizontal position of the mouse pointer during the marker move.

    Y

    Gets or sets the current mouse y location.

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

    Accepts a double value.

    Remarks

    Represents the vertical position of the mouse pointer during the marker move.

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