35 lines
1.1 KiB
JavaScript
Executable File
35 lines
1.1 KiB
JavaScript
Executable File
'use strict';
|
|
|
|
var bbox = require('@turf/bbox');
|
|
var bboxPolygon = require('@turf/bbox-polygon');
|
|
|
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
|
|
var bbox__default = /*#__PURE__*/_interopDefaultLegacy(bbox);
|
|
var bboxPolygon__default = /*#__PURE__*/_interopDefaultLegacy(bboxPolygon);
|
|
|
|
/**
|
|
* Takes any number of features and returns a rectangular {@link Polygon} that encompasses all vertices.
|
|
*
|
|
* @name envelope
|
|
* @param {GeoJSON} geojson input features
|
|
* @returns {Feature<Polygon>} a rectangular Polygon feature that encompasses all vertices
|
|
* @example
|
|
* var features = turf.featureCollection([
|
|
* turf.point([-75.343, 39.984], {"name": "Location A"}),
|
|
* turf.point([-75.833, 39.284], {"name": "Location B"}),
|
|
* turf.point([-75.534, 39.123], {"name": "Location C"})
|
|
* ]);
|
|
*
|
|
* var enveloped = turf.envelope(features);
|
|
*
|
|
* //addToMap
|
|
* var addToMap = [features, enveloped];
|
|
*/
|
|
function envelope(geojson) {
|
|
return bboxPolygon__default['default'](bbox__default['default'](geojson));
|
|
}
|
|
|
|
module.exports = envelope;
|
|
module.exports.default = envelope;
|