Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nimrod007/waze-api
query waze (www.waze.com) for live traffic notifications and route planning. waze api made easy
https://github.com/nimrod007/waze-api
api navigation waze
Last synced: 8 days ago
JSON representation
query waze (www.waze.com) for live traffic notifications and route planning. waze api made easy
- Host: GitHub
- URL: https://github.com/nimrod007/waze-api
- Owner: Nimrod007
- Created: 2013-09-30T19:28:34.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2018-12-19T04:41:27.000Z (almost 6 years ago)
- Last Synced: 2023-10-20T22:05:10.445Z (about 1 year ago)
- Topics: api, navigation, waze
- Language: Java
- Homepage:
- Size: 48.8 KB
- Stars: 94
- Watchers: 18
- Forks: 34
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## waze api - wrapping waze live map
#### 3 steps and your up & running!
##### 1) download [waze-server](https://github.com/Nimrod007/waze-api/releases/download/1.1/waze-server.jar)
##### 2) run the server (port 8080) :
```bash
java -jar waze-server.jar server
```
##### 3) send a request:
```bash
curl -v "http://localhost:8080/waze/routesWithDirections?end=156+5th+Avenue%2C+New+York%2C+NY+10010&start=6+East+57th+Street%2C+New+York%2C+NY+10022" -H "Accept: application/json"
```##### documentation (full list of supported requests) - [link](http://htmlpreview.github.io/?https://github.com/Nimrod007/waze-api/blob/master/docs.html)
##### list of all end-points with curl examples - [link](https://github.com/Nimrod007/waze-api/blob/master/scripts/testWazeAppServer.sh)
#### advance usage:
##### using the the waze service (no server) - [link](https://github.com/Nimrod007/waze-api/blob/master/src/test/java/com/waze/WazeRouteServiceTest.java)
##### run the server with custom port:
```bash
java -Ddw.server.applicationConnectors[0].port=9090 -Ddw.server.adminConnectors[0].port=9091 -jar waze-server.jar server
```
##### run the server with custom config (see [conf.yml](/src/main/resources/conf.yml) for example):
```bash
java -jar waze-server.jar.jar server conf.yml
```##### http://www.nimrodstech.com