GeoJsonGeometryCollectionTCoordinates Method (GeoJsonGeometryTCoordinates) |
Creates a GeoJson GeometryCollection object.
Namespace:
MongoDB.Driver.GeoJsonObjectModel
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax public 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