https://github.com/zaquestion/whereis
https://whereis.zaquestion.io https://whereis.global
https://github.com/zaquestion/whereis
Last synced: 5 months ago
JSON representation
https://whereis.zaquestion.io https://whereis.global
- Host: GitHub
- URL: https://github.com/zaquestion/whereis
- Owner: zaquestion
- License: mit
- Created: 2016-09-09T02:52:42.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2019-07-24T19:34:26.000Z (almost 7 years ago)
- Last Synced: 2025-06-02T12:30:44.792Z (about 1 year ago)
- Language: HTML
- Homepage:
- Size: 41 KB
- Stars: 1
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# whereis
Service for displaying ones current location.
# Inspiration
This project is heavily inspired by https://github.com/lelandbatey/whereIAm checkout his other projects they're great!
# Required Environment
```
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](https://github.com/zaquestion/current)
```
{
"latitude": 47.38672163,
"longitude": -122.23929259
}
```