Skip to main content
Version: 7.0.0

multiPoint

Description

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

Parameters

NameTypeDescription
coordinatesArray<Array<number>>an array of Positions
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 multiPt = turf.multiPoint([
[0, 0],
[10, 10],
]);

//=multiPt

Installation

$ npm install @turf/helpers

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

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