Geopath Constructors

Definition

Overloads

Geopath(IIterable<BasicGeoposition>)

Initializes a new instance of the Geopath class with the specified collection of positions.

Geopath(IIterable<BasicGeoposition>, AltitudeReferenceSystem)

Initializes a new instance of the Geopath class with the specified collection of positions and with the specified altitude reference system.

Geopath(IIterable<BasicGeoposition>, AltitudeReferenceSystem, UInt32)

Initializes a new instance of the Geopath class with the specified collection of positions and with the specified altitude reference system and spatial reference ID (SRID).

Geopath(IIterable<BasicGeoposition>)

Initializes a new instance of the Geopath class with the specified collection of positions.

public:
 Geopath(IIterable<BasicGeoposition> ^ positions);
 Geopath(IIterable<BasicGeoposition> const& positions);
public Geopath(IEnumerable<BasicGeoposition> positions);
function Geopath(positions)
Public Sub New (positions As IEnumerable(Of BasicGeoposition))

Parameters

positions

IIterable<BasicGeoposition>

IEnumerable<BasicGeoposition>

The collection of positions to use to create the new Geopath. For more info, see the Positions property.

Windows requirements

App capabilities
location

See also

Applies to

Geopath(IIterable<BasicGeoposition>, AltitudeReferenceSystem)

Initializes a new instance of the Geopath class with the specified collection of positions and with the specified altitude reference system.

public:
 Geopath(IIterable<BasicGeoposition> ^ positions, AltitudeReferenceSystem altitudeReferenceSystem);
 Geopath(IIterable<BasicGeoposition> const& positions, AltitudeReferenceSystem const& altitudeReferenceSystem);
public Geopath(IEnumerable<BasicGeoposition> positions, AltitudeReferenceSystem altitudeReferenceSystem);
function Geopath(positions, altitudeReferenceSystem)
Public Sub New (positions As IEnumerable(Of BasicGeoposition), altitudeReferenceSystem As AltitudeReferenceSystem)

Parameters

positions

IIterable<BasicGeoposition>

IEnumerable<BasicGeoposition>

The collection of positions to use to create the new Geopath. For more info, see the Positions property.

altitudeReferenceSystem
AltitudeReferenceSystem

The altitude reference system to use to create the new Geopath. For more info, see the AltitudeReferenceSystem property.

Windows requirements

App capabilities
location

See also

Applies to

Geopath(IIterable<BasicGeoposition>, AltitudeReferenceSystem, UInt32)

Initializes a new instance of the Geopath class with the specified collection of positions and with the specified altitude reference system and spatial reference ID (SRID).

public:
 Geopath(IIterable<BasicGeoposition> ^ positions, AltitudeReferenceSystem altitudeReferenceSystem, unsigned int spatialReferenceId);
 Geopath(IIterable<BasicGeoposition> const& positions, AltitudeReferenceSystem const& altitudeReferenceSystem, uint32_t const& spatialReferenceId);
public Geopath(IEnumerable<BasicGeoposition> positions, AltitudeReferenceSystem altitudeReferenceSystem, uint spatialReferenceId);
function Geopath(positions, altitudeReferenceSystem, spatialReferenceId)
Public Sub New (positions As IEnumerable(Of BasicGeoposition), altitudeReferenceSystem As AltitudeReferenceSystem, spatialReferenceId As UInteger)

Parameters

positions

IIterable<BasicGeoposition>

IEnumerable<BasicGeoposition>

The collection of positions to use to create the new Geopath. For more info, see the Positions property.

altitudeReferenceSystem
AltitudeReferenceSystem

The altitude reference system to use to create the new Geopath. For more info, see the AltitudeReferenceSystem property.

spatialReferenceId
UInt32

unsigned int

uint32_t

The spatial reference ID (SRID) to use to create the new Geopath. For more info, see the SpatialReferenceId property.

Windows requirements

App capabilities
location

See also

Applies to