File tree Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Expand file tree Collapse file tree 1 file changed +13
-4
lines changed Original file line number Diff line number Diff line change 11# ORSApiTools
22Java 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
613Library created by Marcos Henrique (Marcoshsc)<br >
7- Currently on version 1 .0
14+ Currently on version 2 .0
815
916## Description
1017This 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
3140discuss 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
4251After 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();
You can’t perform that action at this time.
0 commit comments