16 lines
312 B
TypeScript
16 lines
312 B
TypeScript
import { Feature, Coord, Polygon, Units, Properties } from "@turf/helpers";
|
|
|
|
/**
|
|
* http://turfjs.org/docs/#ellipse
|
|
*/
|
|
export default function (
|
|
center: Coord,
|
|
xSemiAxis: number,
|
|
ySemiAxis: number,
|
|
options?: {
|
|
steps?: number;
|
|
units?: Units;
|
|
properties?: Properties;
|
|
}
|
|
): Feature<Polygon>;
|