项目作者: stef-k

项目描述 :
Track your vehicle fleet
高级语言: JavaScript
项目地址: git://github.com/stef-k/fleet.git
创建时间: 2017-11-04T17:49:36Z
项目社区:https://github.com/stef-k/fleet

开源协议:MIT License

下载


FLEET

An Adonisjs application to track incoming GPS data.

Check this short video here https://youtu.be/4rqEqM_nVKE

How to

The app accepts the following

  1. curl -X POST \
  2. http://localhost:3333/api/v1/report/ \
  3. -H 'accept: application/json' \
  4. -H 'cache-control: no-cache' \
  5. -H 'content-type: application/json' \
  6. -d '{
  7. "active": true,
  8. "plate": "VEHICLE PLATE",
  9. "lat": LATITUDE,
  10. "lon": LONGITUDE,
  11. "accuracy": 20.0,
  12. "altitude": 38.5,
  13. "altitudeAccuracy": 9.0,
  14. "heading": 90.0,
  15. "speed": 15.0,
  16. "reportedAt": "2017-11-02 21:46:21",
  17. "info": "STATUS TEXT"
  18. }

Stack