47 lines
1.8 KiB
JavaScript
Executable File
47 lines
1.8 KiB
JavaScript
Executable File
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var destination_1 = __importDefault(require("@turf/destination"));
|
|
var helpers_1 = require("@turf/helpers");
|
|
/**
|
|
* Takes a {@link Point} and calculates the circle polygon given a radius in degrees, radians, miles, or kilometers; and steps for precision.
|
|
*
|
|
* @name circle
|
|
* @param {Feature<Point>|number[]} center center point
|
|
* @param {number} radius radius of the circle
|
|
* @param {Object} [options={}] Optional parameters
|
|
* @param {number} [options.steps=64] number of steps
|
|
* @param {string} [options.units='kilometers'] miles, kilometers, degrees, or radians
|
|
* @param {Object} [options.properties={}] properties
|
|
* @returns {Feature<Polygon>} circle polygon
|
|
* @example
|
|
* var center = [-75.343, 39.984];
|
|
* var radius = 5;
|
|
* var options = {steps: 10, units: 'kilometers', properties: {foo: 'bar'}};
|
|
* var circle = turf.circle(center, radius, options);
|
|
*
|
|
* //addToMap
|
|
* var addToMap = [turf.point(center), circle]
|
|
*/
|
|
function circle(center, radius, options) {
|
|
if (options === void 0) { options = {}; }
|
|
// default params
|
|
var steps = options.steps || 64;
|
|
var properties = options.properties
|
|
? options.properties
|
|
: !Array.isArray(center) && center.type === "Feature" && center.properties
|
|
? center.properties
|
|
: {};
|
|
// main
|
|
var coordinates = [];
|
|
for (var i = 0; i < steps; i++) {
|
|
coordinates.push(destination_1.default(center, radius, (i * -360) / steps, options).geometry
|
|
.coordinates);
|
|
}
|
|
coordinates.push(coordinates[0]);
|
|
return helpers_1.polygon([coordinates], properties);
|
|
}
|
|
exports.default = circle;
|