2017 © Pedro Peláez
 

library osrm-client

API client for the OSRM project

image

minube/osrm-client

API client for the OSRM project

  • Tuesday, February 16, 2016
  • by devaddiction
  • Repository
  • 7 Watchers
  • 0 Stars
  • 7 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 1 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

OSRM Client

Features

  • viaroute (computation of the shortest path on the road network between two coordinates)
  • locate ( under development )
  • nearest ( under development )

How to use it

Viaroute, (*1)

$client = new Osrm\Client('http://server:5000');
$from = new Osrm\Coordinate(40.418888888889, -3.6919444444444);
$to = new Osrm\Coordinate(41.3825, 2.1769444444444);
$route = $client->getRoute($from, $to);

The Versions

16/02 2016

dev-master

9999999-dev http://minube.com

API client for the OSRM project

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3

 

sdk osrm