Click or drag to resize

BoundingBoxWidth Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Gets the width of the BoundingBox in degrees.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public double Width { get; }

Property Value

Type: Double
Examples
C#
BoundingBox bb1 = new BoundingBox();
// Add arbitrary points in Los Angeles, USA.
bb1.Add(new LatLon(33.787935, -118.013866));
bb1.Add(new LatLon(33.761919, -117.985009));
Console.WriteLine("BoundingBox width is {0} degrees", bb1.Width);
// Prints 'BoundingBox width is 0.0288565474067042 degrees'
See Also