首页 位置服务 经纬度地址转换
经纬度地址转换

经纬度地址转换

  • 2096
  • 3043
百度地图、谷歌地图经纬度地址相互转换。
230.00/20000次
https://api.binstd.com/geoconvert/coord2addr
JSON,JSONP
GET POST
https://api.binstd.com/geoconvert/coord2addr?lat=30.2812129803&lng=120.11523398&type=google&appkey=yourappkey

请求参数:

API在线测试
参数名称类型必填说明
lat string 纬度
lng string 经度
type string 类型 默认是baidu 目前可选baidu、google

返回参数:

参数名称类型说明
lat string 纬度
lng string 经度
type string 类型
address string 地址
country string 国家
province string
city string
district string 县区
description string 地址描述

请求代码:

查看代码
<?php

require_once 'curl.func.php';

$appkey = 'your_appkey_here';//你的appkey
$lat = '30.2812129803';
$lng = '120.11523398';
$type='baidu';//可选 google baidu
$url = "https://api.binstd.com/geoconvert/coord2addr?appkey=$appkey&lat=$lat&lng=$lng&type=$type";
$result = curlOpen($url, ['ssl'=>true]);
$jsonarr = json_decode($result, true);
//exit(var_dump($jsonarr));
if($jsonarr['status'] != 0)
{
    echo $jsonarr['msg'];
    exit();
}

$result = $jsonarr['result'];
echo $result['lat'].' '.$result['lng'].' '.$result['type'].' '.$result['address'].'
'; echo $result['country'].' '.$result['province'].' '.$result['city'].' '.$result['district'].' '.$result['description'].'
';

JSON返回示例 :

{
    "status": "0",
    "msg": "ok",
    "result": {
        "lat": "30.2812129803",
        "lng": "120.11523398",
        "type": "google",
        "address": "中国浙江省杭州市西湖区文二西路11号 邮政编码: 310000",
        "country": "中国",
        "province": "浙江省",
        "city": "杭州市",
        "district": "西湖区",
        "description": ""
    }
}
                    

API错误码:

代号说明
201 经纬度为空
202 地址为空
203 经纬度不正确
210 没有信息

系统错误码:

代号说明
101 APPKEY为空或不存在
102 APPKEY已过期
103 APPKEY无请求此数据权限
104 请求超过次数限制
105 IP被禁止
106 IP请求超过限制
107 接口维护中
108 接口已停用
名称权限价格
免费套餐 5次 免费
Level1 20000次 230.00元
Level2 50000次 560.00元
Level3 70000次 760.00元

相关API接口推荐 更多

活动推荐ACTIVITY 更多

  • orc活动

热门API接口推荐RECOMMENDED DATA 更多

开通BinSTD会员

开通账号:

×

会员类型:

  • 会员

会员时长:

  • 按年付

总金额:

  • ¥ 600.00元原价:900.00元
  • ¥ 300.00元原价:450.00元
  • ¥ 50.00元原价:75.00元
  • ¥ 100.00元原价:150.00元
  • ¥ 150.00元原价:225.00元
  • ¥ 200.00元原价:300.00元
  • ¥ 250.00元原价:375.00元