simple-reverse-geocoder

2.0.1 • Public • Published

simple-reverse-geocoder

npm version npm downloads Build Status Coverage Status Maintainability dependency Status devDependency Status

Get address from a point

Installation

npm i -S simple-reverse-geocoder

Use

Try on Tonic

const rg = require('simple-reverse-geocoder')
 
const loc = { type: 'Point', coordinates: [-70.5171743, -33.3608387] }
rg.getAddress(loc).then(console.log); // 'Del Candil 665-701, Lo Barnechea'
 
// Add redis cache
rg.setCache('redis://localhost:6379/0')
const loc = { type: 'Point', coordinates: [-70.5171743, -33.3608387] }
rg.getAddress(loc).then(console.log); // 'Del Candil 665-701, Lo Barnechea'
 
// Add google apikey
const loc = { type: 'Point', coordinates: [-70.5171743, -33.3608387] }
const apiKey = 'myApiKey'
rg.getAddress(loc, apiKey).then(console.log); // 'Del Candil 665-701, Lo Barnechea'

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i simple-reverse-geocoder

Weekly Downloads

4

Version

2.0.1

License

MIT

Unpacked Size

16.7 kB

Total Files

5

Last publish

Collaborators

  • lgatica