Click or drag to resize

BoundingBoxTopLeft Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
The top-left corner of the BoundingBox.

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

Property Value

Type: LatLon
Remarks
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));
// Set the top-left corner location
bb1.TopLeft = new LatLon(33.726969, -118.030294);
// Get the top-left corner location
LatLon result = bb1.TopLeft;
Console.WriteLine("BoundingBox top-left location is " + result);
// Prints 'BoundingBox top-left location is 33.726969,-118.030294'
See Also