GeoJsonPolygonTCoordinates Method (GeoJsonObjectArgsTCoordinates, TCoordinates) | 
 
            Creates a GeoJson Polygon object.
            
 
    Namespace: 
   MongoDB.Driver.GeoJsonObjectModel
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntaxpublic static GeoJsonPolygon<TCoordinates> Polygon<TCoordinates>(
	GeoJsonObjectArgs<TCoordinates> args,
	params TCoordinates[] positions
)
where TCoordinates : GeoJsonCoordinates
Public Shared Function Polygon(Of TCoordinates As GeoJsonCoordinates) ( 
	args As GeoJsonObjectArgs(Of TCoordinates),
	ParamArray positions As TCoordinates()
) As GeoJsonPolygon(Of TCoordinates)
static member Polygon : 
        args : GeoJsonObjectArgs<'TCoordinates> * 
        positions : 'TCoordinates[] -> GeoJsonPolygon<'TCoordinates>  when 'TCoordinates : GeoJsonCoordinates
Parameters
- args
 - Type: MongoDB.Driver.GeoJsonObjectModelGeoJsonObjectArgsTCoordinates
The additional args. - positions
 - Type: TCoordinates
The positions. 
Type Parameters
- TCoordinates
 - The type of the coordinates.
 
Return Value
Type: 
GeoJsonPolygonTCoordinatesA GeoJson Polygon object.
See Also