Skip to main content
Version: 7.0.0

feature

Description

Wraps a GeoJSON Geometry in a GeoJSON Feature.

Parameters

NameTypeDescription
geometryGeometryinput geometry
properties?Objectan Object of key-value pairs to add as properties (default {})
options?ObjectOptional Parameters (default {})
options.bbox?Array<number>Bounding Box Array [west, south, east, north] associated with the Feature
options.id?string | numberIdentifier associated with the Feature

Returns

Examples

var geometry = {
type: "Point",
coordinates: [110, 50],
};

var feature = turf.feature(geometry);

//=feature

Installation

$ npm install @turf/helpers

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

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