GeoJsonGeometryCollectionTCoordinates Method (GeoJsonGeometryTCoordinates) |
Creates a GeoJson GeometryCollection object.
Namespace:
MongoDB.Driver.GeoJsonObjectModel
Assembly:
MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
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