Click or drag to resize

Line Constructor (LineString)

Verizon Connect Logo
Print this page
Learn more about Verizon Connect GeoBase.
Get information about the latest release
Create a new line object for a specified sequence of points.

Namespace:  Telogis.GeoBase
Assembly:  geobase.net (in geobase.net.dll) Version: 4.99.0.0
Syntax
public Line(
	params LineString[] lines
)

Parameters

lines
Type: Telogis.GeoBase.GeometryLineString
The geometric sequence of points describing the lines.
Examples
C#
// Create a Line
Telogis.GeoBase.Line lineExample = new Telogis.GeoBase.Line(
    new Telogis.GeoBase.Geometry.LineString[] {
            new Telogis.GeoBase.Geometry.LineString(
            new LatLon(33.458781,-117.673489),
            new LatLon(33.453646,-117.665022))
    }
);
See Also