JSPM

  • Created
  • Published
  • Downloads 835340
  • Score
    100M100P100Q204354F
  • License MIT

turf tesselate module

Package Exports

  • @turf/tesselate
  • @turf/tesselate/package.json

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@turf/tesselate) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@turf/tesselate

tesselate

Tesselates a polygon or multipolygon into a collection of triangle polygons using earcut.

Parameters

Examples

const poly = turf.polygon([[[11, 0], [22, 4], [31, 0], [31, 11], [21, 15], [11, 11], [11, 0]]]);
const triangles = turf.tesselate(poly);

//addToMap
const addToMap = [poly, triangles]

Returns FeatureCollection<Polygon> collection of polygon tesselations


This module is part of the Turfjs project, an open source module collection dedicated to geographic algorithms. It is maintained in the Turfjs/turf repository, where you can create PRs and issues.

Installation

Install this single module individually:

$ npm install @turf/tesselate

Or install the all-encompassing @turf/turf module that includes all modules as functions:

$ npm install @turf/turf