Partager via


Polygon Constructeurs

Définition

Surcharges

Polygon(IList<LinearRing>)

Initialise une nouvelle instance de la Polygon classe dans le service Azure Cosmos DB.

Polygon(IList<Position>)

Initialise une nouvelle instance de la Polygon classe, à partir d’un anneau externe (le polygone ne contient pas de trous) dans le service Azure Cosmos DB.

Polygon(IList<LinearRing>, GeometryParams)

Initialise une nouvelle instance de la Polygon classe dans le service Azure Cosmos DB.

Polygon(IList<LinearRing>)

Source:
Polygon.cs

Initialise une nouvelle instance de la Polygon classe dans le service Azure Cosmos DB.

public Polygon (System.Collections.Generic.IList<Microsoft.Azure.Cosmos.Spatial.LinearRing> rings);
new Microsoft.Azure.Cosmos.Spatial.Polygon : System.Collections.Generic.IList<Microsoft.Azure.Cosmos.Spatial.LinearRing> -> Microsoft.Azure.Cosmos.Spatial.Polygon
Public Sub New (rings As IList(Of LinearRing))

Paramètres

rings
IList<LinearRing>

Anneaux polygonaux.

Le premier anneau est un anneau externe. Les anneaux suivants définissent des « trous » dans le polygone.

S’applique à

Polygon(IList<Position>)

Source:
Polygon.cs

Initialise une nouvelle instance de la Polygon classe, à partir d’un anneau externe (le polygone ne contient pas de trous) dans le service Azure Cosmos DB.

public Polygon (System.Collections.Generic.IList<Microsoft.Azure.Cosmos.Spatial.Position> externalRingPositions);
new Microsoft.Azure.Cosmos.Spatial.Polygon : System.Collections.Generic.IList<Microsoft.Azure.Cosmos.Spatial.Position> -> Microsoft.Azure.Cosmos.Spatial.Polygon
Public Sub New (externalRingPositions As IList(Of Position))

Paramètres

externalRingPositions
IList<Position>

Coordonnées d’anneau de polygone externe.

S’applique à

Polygon(IList<LinearRing>, GeometryParams)

Source:
Polygon.cs

Initialise une nouvelle instance de la Polygon classe dans le service Azure Cosmos DB.

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

Paramètres

rings
IList<LinearRing>

Anneaux polygonaux.

geometryParams
GeometryParams

Paramètres géométriques supplémentaires.

S’applique à