Class GeographicBoundingBox
Represents a rectangle, oriented to the x and y axes, which bounds a geographic feature or a geographic dataset.
Inherited Members
Algenta.Colectica.Model.NotificationObject.RaisePropertyChanged<T>(Expression<>)
Namespace: Algenta.Colectica.Model.Ddi
Assembly: Algenta.Colectica.Model.Ddi.dll
Syntax
public class GeographicBoundingBox : NotificationObject
Remarks
The BoundingBox describes the full extent of the geographic coverage, and is designed to be used by systems that search for geography by coordinates.
Properties
EastLongitude
Gets or sets the east longitude of the bounding box.
Declaration
public double EastLongitude { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The east longitude. |
HasValue
Gets a value indicating whether the object has any content.
Declaration
public bool HasValue { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
NorthLatitude
Gets or sets the north latitude of the bounding box.
Declaration
public double NorthLatitude { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The north latitude. |
SouthLatitude
Gets or sets the south latitude of the bounding box.
Declaration
public double SouthLatitude { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The south latitude. |
WestLongitude
Gets or sets the west longitude of the bounding box.
Declaration
public double WestLongitude { get; set; }
Property Value
Type | Description |
---|---|
System.Double | The west longitude. |