GeoPointCollection Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GeoPointCollection(IEnumerable<GeoPoint>) |
Initializes new instance of GeoPointCollection. |
GeoPointCollection(IEnumerable<GeoPoint>, GeoBoundingBox, IReadOnlyDictionary<String,Object>) |
Initializes new instance of GeoPointCollection. |
GeoPointCollection(IEnumerable<GeoPoint>)
- Source:
- GeoPointCollection.cs
Initializes new instance of GeoPointCollection.
public GeoPointCollection (System.Collections.Generic.IEnumerable<Azure.Core.GeoJson.GeoPoint> points);
new Azure.Core.GeoJson.GeoPointCollection : seq<Azure.Core.GeoJson.GeoPoint> -> Azure.Core.GeoJson.GeoPointCollection
Public Sub New (points As IEnumerable(Of GeoPoint))
Parameters
- points
- IEnumerable<GeoPoint>
The collection of inner points.
Applies to
GeoPointCollection(IEnumerable<GeoPoint>, GeoBoundingBox, IReadOnlyDictionary<String,Object>)
- Source:
- GeoPointCollection.cs
Initializes new instance of GeoPointCollection.
public GeoPointCollection (System.Collections.Generic.IEnumerable<Azure.Core.GeoJson.GeoPoint> points, Azure.Core.GeoJson.GeoBoundingBox? boundingBox, System.Collections.Generic.IReadOnlyDictionary<string,object?> customProperties);
new Azure.Core.GeoJson.GeoPointCollection : seq<Azure.Core.GeoJson.GeoPoint> * Azure.Core.GeoJson.GeoBoundingBox * System.Collections.Generic.IReadOnlyDictionary<string, obj> -> Azure.Core.GeoJson.GeoPointCollection
Public Sub New (points As IEnumerable(Of GeoPoint), boundingBox As GeoBoundingBox, customProperties As IReadOnlyDictionary(Of String, Object))
Parameters
- points
- IEnumerable<GeoPoint>
The collection of inner points.
- boundingBox
- GeoBoundingBox
The GeoBoundingBox to use.
- customProperties
- IReadOnlyDictionary<String,Object>
The set of custom properties associated with the GeoObject.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for .NET