Click or drag to resize

GeocodeAddressBoundingBox Field

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
A bounding box containing the address. Only present if HasBoundingBox is true. If a bounding box is present then Location is set to the centroid of the bounding box.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public BoundingBox BoundingBox

Field Value

Type: BoundingBox
Examples
C#
GeocodeAddress addr = GeoCoder.GeoCode("20 Enterprise, Aliso Viejo, California", Country.USA)[0];
if (addr.HasBoundingBox) {
    mapCtrl.ZoomToBoundingBox(addr.BoundingBox, 50);
} else {
    mapCtrl.ZoomToBoundingBox(new BoundingBox(addr.Location), 50);
}
See Also