BoundingBoxWKT Property |
Namespace: Telogis.GeoBase
BoundingBox bb1 = new BoundingBox(); // Add arbitrary points in Los Angeles, USA. bb1.Add(new LatLon(33.94, -118.34)); bb1.Add(new LatLon(33.78, -117.95)); Console.WriteLine("WKT description of this box is: " + bb1.WKT); // WKT description of this box is: Polygon((-118.34 33.78,-117.95 33.78, // -117.95 33.94,-118.34 33.94,-118.34 33.78))