Show / Hide Table of Contents

Class GeographicBoundingBox

Represents a rectangle, oriented to the x and y axes, which bounds a geographic feature or a geographic dataset.

Inheritance
object
NotificationObject
GeographicBoundingBox
Implements
INotifyPropertyChanged
Inherited Members
NotificationObject.PropertyChanged
NotificationObject.RaisePropertyChanged(string)
NotificationObject.OnPropertyChanged(string)
NotificationObject.ResumePropertyEvents()
NotificationObject.SuspendPropertyEvents()
NotificationObject.PropertyEventsSuspended
NotificationObject.PropagateChildChanges(INotifyCollectionChanged, string)
NotificationObject.WatchProperties()
NotificationObject.WatchProperty(INotifyPropertyChanged, string)
NotificationObject.WatchCollection(INotifyCollectionChanged, string)
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Namespace: Algenta.Colectica.Model.Ddi
Assembly: Algenta.Colectica.Model.Ddi.dll
Syntax
public class GeographicBoundingBox : NotificationObject, INotifyPropertyChanged
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
[Display(GroupName = "Coverage:Geography - Bounding Box", Order = 520)]
public double EastLongitude { get; set; }
Property Value
Type Description
double

The east longitude.

HasValue

Gets a value indicating whether the object has any content.

Declaration
public bool HasValue { get; }
Property Value
Type Description
bool

true if the object has any content; otherwise, false.

NorthLatitude

Gets or sets the north latitude of the bounding box.

Declaration
[Display(GroupName = "Coverage:Geography - Bounding Box", Order = 530)]
public double NorthLatitude { get; set; }
Property Value
Type Description
double

The north latitude.

SouthLatitude

Gets or sets the south latitude of the bounding box.

Declaration
[Display(GroupName = "Coverage:Geography - Bounding Box", Order = 540)]
public double SouthLatitude { get; set; }
Property Value
Type Description
double

The south latitude.

WestLongitude

Gets or sets the west longitude of the bounding box.

Declaration
[Display(GroupName = "Coverage:Geography - Bounding Box", Order = 500)]
public double WestLongitude { get; set; }
Property Value
Type Description
double

The west longitude.

Implements

INotifyPropertyChanged
In this article
Back to top Generated by DocFX