Class MinMaxLatitudeLongitude
This class contains the minimum and maximum latitude and longitude coordinates of the map's visible area.
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class MinMaxLatitudeLongitude : Object
Constructors
MinMaxLatitudeLongitude()
Declaration
public MinMaxLatitudeLongitude()
Properties
MaxLatitude
Gets the maximum latitude value from the visible map area.
Declaration
public double MaxLatitude { get; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the maximum latitude coordinate. |
Remarks
Use this value to assess or reference the northern boundary of the visible map area.
MaxLongitude
Gets the maximum longitude value from the visible map area.
Declaration
public double MaxLongitude { get; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the maximum longitude coordinate. |
Remarks
Use this value to assess or reference the eastern boundary of the visible map area.
MinLatitude
Gets the minimum latitude value from the visible map area.
Declaration
public double MinLatitude { get; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the minimum latitude coordinate. |
Remarks
Use this value to assess or reference the southern boundary of the visible map area.
MinLongitude
Gets the minimum longitude value from the visible map area.
Declaration
public double MinLongitude { get; }
Property Value
Type | Description |
---|---|
System.Double | A double representing the minimum longitude coordinate. |
Remarks
Use this value to assess or reference the western boundary of the visible map area.