经纬度地址解析
最后更新于:2022-04-02 08:18:40
## 经纬度地址解析
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/28/fd/28fd8ff213a0502ea15589883a8c9671_203x200.png)
> 根据提供的高德地图坐标、百度地图坐标或GPS坐标,查询位置信息
## 接口费用( [点击购买](https://market.topthink.com/product/323))
> 最低 0.01元/次
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/geo/index
```
### 请求参数
| 名称 | 必填 | 类型 | 说明 |
| --- | --- | --- | --- |
| appCode| 是 |string| 用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| lng | 是 | String | 经度 (如:119.9772857) |
| lat | 是 | String | 纬度 (如:27.327578) |
| type | 是 | Int | 传递的坐标类型,1:GPS 2:百度经纬度 3:高德经纬度 |
### 返回`data`参数
参考返回示例
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->geoIndex()
->withLat('39.907314')
->withLng('116.391279')
->withType(1)
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": {
"lat":"39.915065193348",
"lng":"116.40389843345",
"type":"1",
"address":"北京市东城区中华路甲10号",
"business":"天安门",
"citycode":131
}
}
~~~
';