GeoPolygonCollection Constructors

Definition

Overloads

GeoPolygonCollection(IEnumerable<GeoPolygon>)

Initializes new instance of GeoPolygonCollection.

GeoPolygonCollection(IEnumerable<GeoPolygon>, GeoBoundingBox, IReadOnlyDictionary<String,Object>)

Initializes new instance of GeoPolygonCollection.

GeoPolygonCollection(IEnumerable<GeoPolygon>)

Source:
GeoPolygonCollection.cs

Initializes new instance of GeoPolygonCollection.

public GeoPolygonCollection (System.Collections.Generic.IEnumerable<Azure.Core.GeoJson.GeoPolygon> polygons);
new Azure.Core.GeoJson.GeoPolygonCollection : seq<Azure.Core.GeoJson.GeoPolygon> -> Azure.Core.GeoJson.GeoPolygonCollection
Public Sub New (polygons As IEnumerable(Of GeoPolygon))

Parameters

polygons
IEnumerable<GeoPolygon>

The collection of inner polygons.

Applies to

GeoPolygonCollection(IEnumerable<GeoPolygon>, GeoBoundingBox, IReadOnlyDictionary<String,Object>)

Source:
GeoPolygonCollection.cs

Initializes new instance of GeoPolygonCollection.

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

Parameters

polygons
IEnumerable<GeoPolygon>

The collection of inner geometries.

boundingBox
GeoBoundingBox

The GeoBoundingBox to use.

customProperties
IReadOnlyDictionary<String,Object>

The set of custom properties associated with the GeoObject.

Applies to