12345678910111213141516171819 |
- import {
- Point,
- MultiPolygon,
- FeatureCollection,
- Properties,
- } from "@turf/helpers";
- /**
- * http://turfjs.org/docs/#isobands
- */
- export default function isobands(
- points: FeatureCollection<Point>,
- breaks: number[],
- options?: {
- zProperty?: string;
- commonProperties?: Properties;
- breaksProperties?: Properties[];
- }
- ): FeatureCollection<MultiPolygon>;
|