BoundingBoxBottomRight Property |
Namespace: Telogis.GeoBase
BoundingBox bb1 = new BoundingBox(); // Add arbitrary points in Los Angeles, USA. bb1.Add(new LatLon(33.787935, -118.013866)); bb1.Add(new LatLon(33.761919, -117.985009)); // Set the bottom-right corner location bb1.BottomRight = new LatLon(33.726969, -118.030294); // Get the bottom-right corner location LatLon result = bb1.BottomRight; Console.WriteLine("BoundingBox bottom-right location is " + result); // Prints 'BoundingBox bottom-right location is 33.726969,-118.030294'