minube/osrm-client

OSRM项目的API客户端

dev-master 2016-02-16 17:16 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:58:26 UTC


README

特性

  • viaroute(计算两点之间道路网络上的最短路径)
  • locate(开发中
  • nearest(开发中

如何使用它

Viaroute

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