GeoLineString Constructors

Definition

Overloads

GeoLineString(IEnumerable<GeoPosition>)

Initializes new instance of GeoLineString.

GeoLineString(IEnumerable<GeoPosition>, GeoBoundingBox, IReadOnlyDictionary<String,Object>)

Initializes new instance of GeoLineString.

GeoLineString(IEnumerable<GeoPosition>)

Source:
GeoLineString.cs

Initializes new instance of GeoLineString.

public GeoLineString (System.Collections.Generic.IEnumerable<Azure.Core.GeoJson.GeoPosition> coordinates);
new Azure.Core.GeoJson.GeoLineString : seq<Azure.Core.GeoJson.GeoPosition> -> Azure.Core.GeoJson.GeoLineString
Public Sub New (coordinates As IEnumerable(Of GeoPosition))

Parameters

coordinates
IEnumerable<GeoPosition>

The collection of GeoPosition that make up the line.

Applies to

GeoLineString(IEnumerable<GeoPosition>, GeoBoundingBox, IReadOnlyDictionary<String,Object>)

Source:
GeoLineString.cs

Initializes new instance of GeoLineString.

public GeoLineString (System.Collections.Generic.IEnumerable<Azure.Core.GeoJson.GeoPosition> coordinates, Azure.Core.GeoJson.GeoBoundingBox? boundingBox, System.Collections.Generic.IReadOnlyDictionary<string,object?> customProperties);
new Azure.Core.GeoJson.GeoLineString : seq<Azure.Core.GeoJson.GeoPosition> * Azure.Core.GeoJson.GeoBoundingBox * System.Collections.Generic.IReadOnlyDictionary<string, obj> -> Azure.Core.GeoJson.GeoLineString
Public Sub New (coordinates As IEnumerable(Of GeoPosition), boundingBox As GeoBoundingBox, customProperties As IReadOnlyDictionary(Of String, Object))

Parameters

coordinates
IEnumerable<GeoPosition>

The collection of GeoPosition that make up the line.

boundingBox
GeoBoundingBox

The GeoBoundingBox to use.

customProperties
IReadOnlyDictionary<String,Object>

The set of custom properties associated with the GeoObject.

Applies to