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

MultiPolygon 构造函数

定义

重载

MultiPolygon(IList<PolygonCoordinates>)

初始化 MultiPolygon 类的新实例。

MultiPolygon(IList<PolygonCoordinates>, GeometryParams)

初始化 MultiPolygon 类的新实例。

MultiPolygon(IList<PolygonCoordinates>)

Source:
MultiPolygon.cs

初始化 MultiPolygon 类的新实例。

public MultiPolygon (System.Collections.Generic.IList<Microsoft.Azure.Cosmos.Spatial.PolygonCoordinates> polygons);
new Microsoft.Azure.Cosmos.Spatial.MultiPolygon : System.Collections.Generic.IList<Microsoft.Azure.Cosmos.Spatial.PolygonCoordinates> -> Microsoft.Azure.Cosmos.Spatial.MultiPolygon
Public Sub New (polygons As IList(Of PolygonCoordinates))

参数

polygons
IList<PolygonCoordinates>

PolygonCoordinates实例列表。 每个表示 PolygonCoordinates 单独的多边形。

适用于

MultiPolygon(IList<PolygonCoordinates>, GeometryParams)

Source:
MultiPolygon.cs

初始化 MultiPolygon 类的新实例。

public MultiPolygon (System.Collections.Generic.IList<Microsoft.Azure.Cosmos.Spatial.PolygonCoordinates> polygons, Microsoft.Azure.Cosmos.Spatial.GeometryParams geometryParams);
new Microsoft.Azure.Cosmos.Spatial.MultiPolygon : System.Collections.Generic.IList<Microsoft.Azure.Cosmos.Spatial.PolygonCoordinates> * Microsoft.Azure.Cosmos.Spatial.GeometryParams -> Microsoft.Azure.Cosmos.Spatial.MultiPolygon
Public Sub New (polygons As IList(Of PolygonCoordinates), geometryParams As GeometryParams)

参数

polygons
IList<PolygonCoordinates>

PolygonCoordinates实例列表。 每个表示 PolygonCoordinates 单独的多边形。

geometryParams
GeometryParams

其他几何图形参数。

适用于