Node(NullableLatitude, NullableLongitude, NullableLength) Constructor

Creates a new instance of Node.

Definition

Namespace: InnerDrive.Geography
Assembly: InnerDrive.Geography (in InnerDrive.Geography.dll) Version: 5.2.9017.0
C#
public Node(
	Latitude? latitude,
	Longitude? longitude,
	Length? elevation
)

Parameters

latitude  NullableLatitude
The latitude value of this Node.
longitude  NullableLongitude
The longitude value of this Node.
elevation  NullableLength
The elevation of this Node relative to the surface of the earth.

Exceptions

ArgumentException

latitude is not of a Type that is appropriate for Latitude coordinates

- or -

longitude is not of a Type that is appropriate for Longitude coordinates

See Also