Service for displaying ones current location.
This project is heavily inspired by https://github.com/lelandbatey/whereIAm checkout his other projects they're great!
export LOCATION_API=http://localhost:8081/location
// PORT to run on
export PORT=8060
A location API is required, technically it can be anything that returns json in the below format. I'm using current
{
"latitude": 47.38672163,
"longitude": -122.23929259
}