Click or drag to resize

BoundingBoxWKT Property

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
A string that describes the BoundingBox in WKT (Well-Known Text) format.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public string WKT { get; }

Property Value

Type: String
Examples
C#
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))
See Also