dev-master
9999999-devAPI client for the OSRM project
The Development Requires
by Jens Nazarenus
by Antonio De Patto
1.0-stable
1.0.0.0API client for the OSRM project
The Development Requires
by Jens Nazarenus
API client for the OSRM project
osrm-api-client is a an open source PHP implementation of the OSRM Server API., (*1)
To add osrm-api-client as a locally per-project dependency you can insert the following code to your composer.json file:, (*3)
{ "require": { "anto80/osrm-api-client": "dev-master" } }
If you are using the server router.project-osrm.org with this API client, please read the API Usage Policy of Project-OSRM., (*4)
$client = new Osrm\OsrmClient('http://server:5000'); $from = new Osrm\Coordinate(50.142739,9.122257); $to = new Osrm\Coordinate(50.139631,9.107151); $route = $client->getRoute($from, $to);
$client = new Osrm\OsrmClient('http://server:5000'); $mylocation = new Osrm\Coordinate(9.305283, 50.344735); $nearestStreet = $client->getNearestNodePoint($mylocation);
$client = new Osrm\OsrmClient('http://server:5000'); $mylocation = new Osrm\Coordinate(9.305283, 50.344735); $nearestStreet = $client->getNearestStreetPoint($mylocation);
Licensed under the GNU General Public License 3., (*5)
(c) Jens Nazarenus, 2013, (*6)
API client for the OSRM project
API client for the OSRM project