你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

GeoCollection 构造函数

定义

重载

GeoCollection(IEnumerable<GeoObject>)

初始化 的新实例 GeoCollection

GeoCollection(IEnumerable<GeoObject>, GeoBoundingBox, IReadOnlyDictionary<String,Object>)

初始化 的新实例 GeoCollection

GeoCollection(IEnumerable<GeoObject>)

Source:
GeoCollection.cs

初始化 的新实例 GeoCollection

public GeoCollection(System.Collections.Generic.IEnumerable<Azure.Core.GeoJson.GeoObject> geometries);
new Azure.Core.GeoJson.GeoCollection : seq<Azure.Core.GeoJson.GeoObject> -> Azure.Core.GeoJson.GeoCollection
Public Sub New (geometries As IEnumerable(Of GeoObject))

参数

geometries
IEnumerable<GeoObject>

内部几何图形的集合。

适用于

GeoCollection(IEnumerable<GeoObject>, GeoBoundingBox, IReadOnlyDictionary<String,Object>)

Source:
GeoCollection.cs

初始化 的新实例 GeoCollection

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

参数

geometries
IEnumerable<GeoObject>

内部几何图形的集合。

boundingBox
GeoBoundingBox

要使用的 GeoBoundingBox

customProperties
IReadOnlyDictionary<String,Object>

GeoObject关联的自定义属性集。

适用于