anto80/osrm-api-client
Composer 安装命令:
composer require anto80/osrm-api-client
包简介
API client for the OSRM project
README 文档
README
osrm-api-client is a an open source PHP implementation of the OSRM Server API.
###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:
{
"require": {
"anto80/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. 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.
(c) Jens Nazarenus, 2013
anto80/osrm-api-client 适用场景与选型建议
anto80/osrm-api-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 52 次下载、GitHub Stars 达 0, 最近一次更新时间为 2016 年 08 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 anto80/osrm-api-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 anto80/osrm-api-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 52
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 5
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2016-08-12