ClickedMapViewEventArgs¶
Namespace: ThinkGeo.UI.Blazor
Provides data for MapView.OnClick event.
public class ClickedMapViewEventArgs : System.EventArgs
Inheritance Object → EventArgs → ClickedMapViewEventArgs
Properties¶
ScreenX¶
Gets x-coordinate of screen.
public float ScreenX { get; }
Property Value¶
ScreenY¶
Gets y-coordinate of screen.
public float ScreenY { get; }
Property Value¶
WorldX¶
Gets x-coordinate of world.
public double WorldX { get; }
Property Value¶
WorldY¶
Gets y-coordinate of world.
public double WorldY { get; }
Property Value¶
Constructors¶
ClickedMapViewEventArgs(Single, Single, Double, Double)¶
Initializes a new instance of ClickedMapViewEventArgs.
public ClickedMapViewEventArgs(float screenX, float screenY, double worldX, double worldY)
Parameters¶
screenX Single
 The x-coordinate of screen the mouse clicked.
screenY Single
 The y-coordinate of screen the mouse clicked.
worldX Double
 The x-coordinate of world the mouse clicked.
worldY Double
 The y-coordinate of world the mouse clicked.