Skip to content

GeoXForm/esri-extent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

esri-extent

Get the Esri-formatted extent of a GeoJSON feature collection.

Install

npm install esri-extent

Usage

var esriExtent = require('esri-extent')
var example = require('./test/geojson-spec-example.json')

var extent = esriExtent(example)

// OR

esriExtent(example, function (err, extent) {
  if (err) throw err

  console.log(extent)
  // {
  //   xmin: 100,
  //   ymin: 0,
  //   xmax: 105,
  //   ymax: 1,
  //   spatialReference: {
  //     wkid: 4326,
  //     latestWkid: 4326
  //   }
  // }
})

License

ISC

About

Get the Esri-formatted extent of a GeoJSON feature collection.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors