mirror of https://gitee.com/antv-l7/antv-l7
f7e5376b7d | ||
---|---|---|
.. | ||
test | ||
.travis.yml | ||
CHANGELOG.md | ||
LICENSE | ||
README.md | ||
index.js | ||
package.json |
README.md
geojson-area
Calculate the area inside of any GeoJSON geometry.
usage
npm install @mapbox/geojson-area
example
var geojsonArea = require('@mapbox/geojson-area');
var area = geojsonArea.geometry(obj);
api
geojsonArea.geometry(obj)
Given a Geometry object, return contained
area as square meters. Invalid input will return null
.
Adapted from OpenLayers