2017 © Pedro Peláez
 

library osrm-api-client

API client for the OSRM project

image

jens-na/osrm-api-client

API client for the OSRM project

  • Tuesday, July 16, 2013
  • by jens-na
  • Repository
  • 2 Watchers
  • 2 Stars
  • 1,807 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 6 Forks
  • 2 Open issues
  • 2 Versions
  • 15 % Grown

The README.md

Overview

osrm-api-client is a an open source PHP implementation of the OSRM Server API., (*1)

Latest Unstable Version Total Downloads, (*2)

Features

  • viaroute (computation of the shortest path on the road network between two coordinates)
  • locate (nearest node of the road network)
  • nearest (nearest point on any street segment of the road network)

Installation

To add osrm-api-client as a locally per-project dependency you can insert the following code to your composer.json file:, (*3)

{
    "require": {
        "jens-na/osrm-api-client": "dev-master"
    }
}

API Usage Policy

If you are using the server router.project-osrm.org with this API client, please read the API Usage Policy of Project-OSRM., (*4)

Usage

viaroute

$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);

locate

$client = new Osrm\OsrmClient('http://server:5000');
$mylocation = new Osrm\Coordinate(9.305283, 50.344735);
$nearestStreet = $client->getNearestNodePoint($mylocation);

nearest

$client = new Osrm\OsrmClient('http://server:5000');
$mylocation = new Osrm\Coordinate(9.305283, 50.344735);
$nearestStreet = $client->getNearestStreetPoint($mylocation);

References

License and Copyright

Licensed under the GNU General Public License 3., (*5)

(c) Jens Nazarenus, 2013, (*6)

The Versions

16/07 2013

dev-master

9999999-dev

API client for the OSRM project

  Sources   Download

The Development Requires

by Jens Nazarenus

07/07 2013

1.0.0-alpha

1.0.0.0-alpha

API client for the OSRM project

  Sources   Download

The Development Requires

by Jens Nazarenus