经纬度解析
如初助手API

接口地址: https://www.58.linkpc.net/api/location_geocoder_address

返回格式: 请看返回示例

请求方式: GET

请求示例: https://www.58.linkpc.net/api/location_geocoder_address?lng=125.18512&lat=44.43195

请求参数说明:

名称 必填 类型 说明
lng string 需要查询的经度
lat string 需要查询的纬度
hh string 换行符号(默认 )

返回参数说明:

名称 类型 说明

返回示例:

经纬度:125.18512,44.43195
省份:吉林省
城市:长春市
区:农安县
街道:解放街
地区:农安县人民政府
推荐地区:农安县人民政府(解放街西)

错误码格式说明:

名称 类型 说明

代码示例:

<?php
header('Content-type: application/json; charset=utf-8');
date_default_timezone_set('PRC');
$url = 'https://58.linkpc.net/api/location_geocoder_address';
$type = isset($_GET['type']) ? $_GET['type'] : '';
if ($type == 'json' || $type == 'JSON') {
$result = file_get_contents($url . '?type=json');
echo $result;
} else {
// 使用cURL获取URL内容
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);

// 检查内容类型并输出相应内容
$contentType = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
curl_close($ch);

if (strpos($contentType, 'image') !== false) {
// 输出图片
header('Content-Type: ' . $contentType);
echo $response;
} elseif (strpos($contentType, 'text') !== false) {
// 输出文字
header('Content-Type: ' . $contentType);
echo $response;
} elseif (strpos($contentType, 'application/json') !== false) {
// 输出JSON
header('Content-Type: application/json');
echo $response;
} else {
// 输出网页返回内容
header('Content-Type: text/html');
echo $response;
}
}
?>