Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/luffyzhao/php-amapweb

高德地图Web接口调用
https://github.com/luffyzhao/php-amapweb

Last synced: about 1 month ago
JSON representation

高德地图Web接口调用

Awesome Lists containing this project

README

        

## php调用高德地图web接口sdk

### 安装方法

```
composer require luffyzhao/php-amap-web
```

### 使用方法

#### 地理编码API

```php
include __DIR__ . '/../vendor/autoload.php';

use \luffyzhao\amapWeb\Georegeo;

$data = [['name' => '深圳市南山区科苑北路科兴科学园A4栋501室'], ['name' => '深圳市光明新区高新路研祥智谷研发楼']];

$geore = new Georegeo($data, ['addressKey' => 'name']);

$geore->setAmapKey('your key')->solve();

print_r($geore->toArray());
```