GeoJsonGeometryCollectionTCoordinates Method (GeoJsonObjectArgsTCoordinates, 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>(
GeoJsonObjectArgs<TCoordinates> args,
params GeoJsonGeometry<TCoordinates>[] geometries
)
where TCoordinates : GeoJsonCoordinates
Public Shared Function GeometryCollection(Of TCoordinates As GeoJsonCoordinates) (
args As GeoJsonObjectArgs(Of TCoordinates),
ParamArray geometries As GeoJsonGeometry(Of TCoordinates)()
) As GeoJsonGeometryCollection(Of TCoordinates)
static member GeometryCollection :
args : GeoJsonObjectArgs<'TCoordinates> *
geometries : GeoJsonGeometry<'TCoordinates>[] -> GeoJsonGeometryCollection<'TCoordinates> when 'TCoordinates : GeoJsonCoordinates
Parameters
- args
- Type: MongoDB.Driver.GeoJsonObjectModelGeoJsonObjectArgsTCoordinates
The additional args. - geometries
- Type: MongoDB.Driver.GeoJsonObjectModelGeoJsonGeometryTCoordinates
The geometries.
Type Parameters
- TCoordinates
- The type of the coordinates.
Return Value
Type:
GeoJsonGeometryCollectionTCoordinatesA GeoJson GeometryCollection object.
See Also