Class Coordinate
Represents a geographical coordinate.
Inherited Members
Namespace: Innovt.Domain.Adresses
Assembly: Innovt.Domain.dll
Syntax
public class Coordinate
Constructors
| Edit this page View SourceCoordinate()
Initializes a new instance of the Coordinate class.
Declaration
public Coordinate()
Coordinate(long, long)
Initializes a new instance of the Coordinate class with latitude and longitude.
Declaration
public Coordinate(long latitude, long longitude)
Parameters
Type | Name | Description |
---|---|---|
long | latitude | The latitude value. |
long | longitude | The longitude value. |
Properties
| Edit this page View SourceAddressId
Gets or sets the address ID associated with the coordinate.
Declaration
public int AddressId { get; set; }
Property Value
Type | Description |
---|---|
int |
Latitude
Gets or sets the latitude value of the coordinate.
Declaration
public long Latitude { get; set; }
Property Value
Type | Description |
---|---|
long |
Longitude
Gets or sets the longitude value of the coordinate.
Declaration
public long Longitude { get; set; }
Property Value
Type | Description |
---|---|
long |