📦 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();
- Geo 地址转换为经纬度
- ReGeo 经纬度逆转为地址
- IP IP定位
- Walking 步行线路规划
- TransitIntegrated 公交路径规划
- Bicycling 骑行路径规划
- Distance 距离计算
- Convert 经纬度坐标转换
- WeatherInfo 天气信息查询
- District 行政区域字典获取
- PoiText 关键字词POI检索
- PlaceAround POI周边检索(POI分类编码)
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.
MIT