Class Coordinate
Gets or sets the latitude and longitude values that define a map location.
Inherited Members
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class Coordinate
Constructors
Coordinate()
Declaration
public Coordinate()
Properties
Latitude
Gets or sets the latitude value that represents a map location.
Declaration
public double Latitude { get; set; }
Property Value
| Type | Description |
|---|---|
| double | A double value representing the latitude, ranging from -90 to 90. |
Remarks
Ensure that the latitude value is within the valid range for geographical coordinates.
Longitude
Gets or sets the longitude value that represents a map location.
Declaration
public double Longitude { get; set; }
Property Value
| Type | Description |
|---|---|
| double | A double value representing the longitude, ranging from -180 to 180. |
Remarks
Ensure that the longitude value is within the valid range for geographical coordinates.