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

经纬度地址转换

  • 2096
  • 3043
百度地图、谷歌地图经纬度地址相互转换。
198.00/10000次
申请就送100次
https://api.jisuapi.com/geoconvert/coord2addr
JSON,JSONP
GET POST
https://api.jisuapi.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.jisuapi.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 接口已停用
计次套餐套餐规格价格
免费套餐 100次 0.00 元  ≈0元/次
Level1 10000次 198.00 元  ≈0.0198元/次
Level2 20000次 370.00 元  ≈0.0185元/次
Level3 50000次 850.00 元  ≈0.017元/次
Level4 100000次 1500.00 元  ≈0.015元/次
* 包月套餐和计次套餐不可同时购买,不可叠加使用。
包月套餐套餐规格价格
Level1
特惠
1000次/天 57.50元 ≈0.00192元/次
Level2 3000次/天 305.00元 ≈0.00339元/次
Level3 6000次/天 572.50元 ≈0.00318元/次
Level4 10000次/天 880.00元 ≈0.00293元/次
* 套餐使用时限为订购之日起30日。

活动推荐ACTIVITY 更多

  • orc活动

其它推荐RECOMMENDED DATA 更多