Skip to content

Commit 9fe919a

Browse files
authored
Update README.md
1 parent bd169fc commit 9fe919a

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,24 @@
11
# ORSApiTools
22
Java library that provides implementation of Open Route Service endpoints.
33

4+
## Updates
5+
6+
Newer version 2.0 now includes Isochrones and Matrix V2 endpoint support, and a complete refactor was made in the code, in order to use jackson
7+
as the JSON parser library.
8+
9+
Version 1.1 fixed bugs in the matrix endpoint.
10+
411
## Information
512

613
Library created by Marcos Henrique (Marcoshsc)<br>
7-
Currently on version 1.0
14+
Currently on version 2.0
815

916
## Description
1017
This library provides implementations of the following endpoints:
1118
- V1 Directions
1219
- V1 Matrix
20+
- V2 Matrix
21+
- Isochrones
1322
- Geocode Search
1423
- Optimization
1524
- Pois
@@ -31,12 +40,12 @@ If you want to build a new endpoint implementation, also open an issue to
3140
discuss what is going to be done.
3241

3342
## Importing
34-
Add the following dependency to your pom.xml:
43+
Add the following dependency to your pom.xml (Latest version):
3544

3645
<dependency>
3746
<groupId>com.github.marcoshsc</groupId>
3847
<artifactId>orsApiTools</artifactId>
39-
<version>1.0</version>
48+
<version>2.0</version>
4049
</dependency>
4150

4251
After that, everything is working. Enjoy!
@@ -201,4 +210,4 @@ You will find some sample usages as listed below. See javadocs for better unders
201210
53.0756)), 500));
202211
req.getParameters().setLimit(new Limit(12));
203212
req.getParameters().setSortBy(new SortBy(SortByEnum.DISTANCE));
204-
PoisResponse res = req.makeRequest();
213+
PoisResponse res = req.makeRequest();

0 commit comments

Comments
 (0)