Class MapPanEventArgs
Specifies the event arguments for the pan event in maps.
Inherited Members
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class MapPanEventArgs : MinMaxLatitudeLongitude
Constructors
MapPanEventArgs()
Declaration
public MapPanEventArgs()
Properties
Cancel
Gets or sets a value indicating whether or not the cancel state for the event. The default value is false. If set as true, the event progress will be stopped.
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Latitude
Gets or sets the latitude value of maps on pan event.
Declaration
public double Latitude { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Longitude
Gets or sets the longitude value of maps on pan event.
Declaration
public double Longitude { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Scale
Gets or sets the scale value for the maps.
Declaration
public double Scale { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
TileTranslatePoint
Gets or sets the tile map translate point.
Declaration
public PositionValues TileTranslatePoint { get; set; }
Property Value
Type | Description |
---|---|
PositionValues | A PositionValues object representing the tile map translate point. |
TileZoomLevel
Gets or sets the zoom level for the tile map.
Declaration
public double TileZoomLevel { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
TranslatePoint
Gets or sets the translate point of the geometry map.
Declaration
public PositionValues TranslatePoint { get; set; }
Property Value
Type | Description |
---|---|
PositionValues | A PositionValues object representing the translate point of geometry map. |