Get address from a point
npm i -S simple-reverse-geocoderconstrg=require('simple-reverse-geocoder')constloc={type: 'Point',coordinates: [-70.5171743,-33.3608387]}rg.getAddress(loc).then(console.log);// 'Del Candil 665-701, Lo Barnechea'// Add redis cacherg.setCache('redis://localhost:6379/0')constloc={type: 'Point',coordinates: [-70.5171743,-33.3608387]}rg.getAddress(loc).then(console.log);// 'Del Candil 665-701, Lo Barnechea'// Add google apikeyconstloc={type: 'Point',coordinates: [-70.5171743,-33.3608387]}constapiKey='myApiKey'rg.getAddress(loc,apiKey).then(console.log);// 'Del Candil 665-701, Lo Barnechea'