Click or drag to resize

BoundingBox Constructor (LatLon)

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Constructs a new BoundingBox around the specified points.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public BoundingBox(
	params LatLon[] points
)

Parameters

points
Type: Telogis.GeoBaseLatLon
An array of points to be added to the BoundingBox.
Examples
C#
LatLon[] myLocs = new LatLon[] { 
    new LatLon(33.586445,-117.740036), 
    new LatLon(33.587582,-117.727129),
    new LatLon(33.576816,-117.734412)
};
BoundingBox pointsBox = new BoundingBox(myLocs);
See Also