GeoJsonGeometryCollectionTCoordinates Method (GeoJsonGeometryTCoordinates) | 
 
            Creates a GeoJson GeometryCollection object.
            
 
    Namespace: 
   MongoDB.Driver.GeoJsonObjectModel
    Assembly:
   MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntaxpublic static GeoJsonGeometryCollection<TCoordinates> GeometryCollection<TCoordinates>(
	params GeoJsonGeometry<TCoordinates>[] geometries
)
where TCoordinates : GeoJsonCoordinates
Public Shared Function GeometryCollection(Of TCoordinates As GeoJsonCoordinates) ( 
	ParamArray geometries As GeoJsonGeometry(Of TCoordinates)()
) As GeoJsonGeometryCollection(Of TCoordinates)
static member GeometryCollection : 
        geometries : GeoJsonGeometry<'TCoordinates>[] -> GeoJsonGeometryCollection<'TCoordinates>  when 'TCoordinates : GeoJsonCoordinates
Parameters
- geometries
 - Type: MongoDB.Driver.GeoJsonObjectModelGeoJsonGeometryTCoordinates
The geometries. 
Type Parameters
- TCoordinates
 - The type of the coordinates.
 
Return Value
Type: 
GeoJsonGeometryCollectionTCoordinatesA GeoJson GeometryCollection object.
See Also