BoundingBox Constructor (BoundingBox) |
Namespace: Telogis.GeoBase
// Create an empty BoundingBox BoundingBox bb1 = new BoundingBox(); // Add locations to enclose, expanding the first BoundingBox bb1.Add(new LatLon(33.94, -118.34)); bb1.Add(new LatLon(33.78, -117.95)); // Create a second BoundingBox that contains the previous BoundingBox BoundingBox bb2 = new BoundingBox(bb1);