Click or drag to resize

PolygonBoundingBox Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Calculates the bounding-box of the polygon.

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

Property Value

Type: BoundingBox
Examples
C#
// Create a four sided polygon in San Diego, Ca.
Telogis.GeoBase.Geometry.Polygon myPolygon = new Telogis.GeoBase.Geometry.Polygon(
    new Telogis.GeoBase.Geometry.LineString[] {
                new Telogis.GeoBase.Geometry.LineString(
                new Telogis.GeoBase.LatLon(32.722237,-117.169485),
                new Telogis.GeoBase.LatLon(32.722398,-117.156160),
                new Telogis.GeoBase.LatLon(32.712340,-117.156160),
                new Telogis.GeoBase.LatLon(32.712259,-117.169611),
                new Telogis.GeoBase.LatLon(32.722237,-117.169485))
    }
);
BoundingBox polygonBox = myPolygon.BoundingBox;
See Also