Skip to main content
Version: Next

geometryCollection

Description

Creates a Feature<GeometryCollection> based on a coordinate array. Properties can be added optionally.

Parameters

NameTypeDescription
geometriesArray<Point | LineString | Polygon | MultiPoint | MultiLineString | MultiPolygon>an array of GeoJSON Geometries
properties?GeoJsonPropertiesan Object of key-value pairs to add as properties (default {})
options?ObjectOptional Parameters (default {})
options.bbox?BBoxBounding Box Array [west, south, east, north] associated with the Feature
options.id?IdIdentifier associated with the Feature

Returns

Feature<GeometryCollection, GeoJsonProperties> a GeoJSON GeometryCollection Feature

Examples

var pt = turf.geometry("Point", [100, 0]);
var line = turf.geometry("LineString", [
[101, 0],
[102, 1],
]);
var collection = turf.geometryCollection([pt, line]);

// => collection

Installation

$ npm install @turf/helpers

import { geometryCollection } from "@turf/helpers";
const result = geometryCollection(...);
$ npm install @turf/turf

import * as turf from "@turf/turf";
const result = turf.geometryCollection(...);