GeocodeAddressBoundingBox Field | |
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
Public BoundingBox As BoundingBox
Field Value
Type:
BoundingBoxExamples 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