php语法结合高德地图api如何获取周边POI信息

2024年09月08日 建站教程

<?php
$lat = $_GET['lat'];
$lng = $_GET['lng'];
 
// 替换为自己的高德地图开发者Key
$key = 'YOUR_AMAP_KEY';
 
$url = 'https://restapi.amap.com/v3/place/around?key=' . $key . '&location=' . $lng . ',' . $lat . '&output=json&radius=1000&keywords=';
 
$response = file_get_contents($url);
 
// 解析JSON响应
$result = json_decode($response, true);
 
if ($result['status'] == '1') {
  // 获取返回的POI信息
  $pois = $result['pois'];
 
  // 处理POI信息
  foreach ($pois as $poi) {
    echo $poi['name'] . '<br>';
    echo $poi['address'] . '<br>';
    echo '类型:' . $poi['type'] . '<br>';
    echo '<br>';
  }
} else {
  echo '获取周边POI信息失败';
}
?>

本文链接:http://so.lmcjl.com/news/12516/

展开阅读全文
相关内容