jackven/amap
Composer 安装命令:
composer require jackven/amap
包简介
📦 It may be the best SDK for developing Amap App.
README 文档
README
📦 It may be the best SDK for developing Amap App.
安装要求
- PHP >= 7.2
- Composer
安装
$ composer require jackven/amap -vvv
使用
基本使用
<?php use VenAmap\AmapClient; $config = [ 'key' => 'xxxxxxxxxxxxxxxxxxxxxxx', 'private_key' => 'xxxxxxxxxxxxxxx', // 未启用数字签名不用设置该项 ]; $app = AmapClient::getInstance($config); $respone = $app->driver('ReGeo')->setLocation('116.481488,39.990464')->send();
也可以这样使用
<?php use VenAmap\AmapClient; use VenAmap\Request\ReGeo; $config = [ 'key' => 'xxxxxxxxxxxxxxxxxxxxxxx', 'private_key' => 'xxxxxxxxxxxxxxx', // 未启用数字签名不用设置该项 ]; AmapClient::getInstance($config); $respone = (new ReGeo())->setLocation('116.481488,39.990464')->send();
目前支持的amap接口
- Geo 地址转换为经纬度
- ReGeo 经纬度逆转为地址
- IP IP定位
- Walking 步行线路规划
- TransitIntegrated 公交路径规划
- Bicycling 骑行路径规划
- Distance 距离计算
- Convert 经纬度坐标转换
- WeatherInfo 天气信息查询
- District 行政区域字典获取
- PoiText 关键字词POI检索
- PlaceAround POI周边检索(POI分类编码)
Contributing
You can contribute in one of three ways:
- File bug reports using the issue tracker.
- Answer questions or fix bugs on the issue tracker.
- Contribute new features or update the wiki.
The code contribution process is not very formal. You just need to make sure that you follow the PSR-0, PSR-1, and PSR-2 coding guidelines. Any new code contributions must be accompanied by unit tests where applicable.
License
MIT
统计信息
- 总下载量: 155
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-04-06