Class ZoomEventArgs
Represents the ZoomEventArgs in map.Inherites from the RoutedEventArgs
Inheritance
System.Object
ZoomEventArgs
Namespace: Syncfusion.UI.Xaml.Maps
Assembly: Syncfusion.SfMaps.WPF.dll
Syntax
public class ZoomEventArgs : RoutedEventArgs
Constructors
ZoomEventArgs(Double, Double, Int32)
Initializes a new instance of the ZoomEventArgs class.
Declaration
public ZoomEventArgs(double latitude, double longitude, int zoomLevel)
Parameters
Type | Name | Description |
---|---|---|
System.Double | latitude | Latitude when Zooming |
System.Double | longitude | Longitude when zooming |
System.Int32 | zoomLevel | Current Zoom level |
Properties
Latitude
Gets the Longitude of the ZoomEventArgs.
Declaration
public double Latitude { get; }
Property Value
Type | Description |
---|---|
System.Double | Type :System.Double |
Remarks
Longitude is the read only property passed when zoom the map.
Longitude
Gets the Latitude of the ZoomEventArgs.
Declaration
public double Longitude { get; }
Property Value
Type | Description |
---|---|
System.Double | Type :System.Double |
Remarks
Latitude is the read only property passed when zoom the map.
ZoomLevel
Gets the ZoomLevel of the ZoomEventArgs.
Declaration
public int ZoomLevel { get; }
Property Value
Type | Description |
---|---|
System.Int32 | Type :System.Double |
Remarks
ZoomLevel is the read only property passed when zoom the map.