php中使用高德地图API实现地名模糊搜索

2024年07月17日 建站教程

高德地图提供了一套丰富的API,可以轻松实现这一功能。我们可以根据用户输入的地名进行模糊搜索,返回搜索结果。下面web建站小编给大家简单介绍一下具体实现代码!

具体代码示例如下:

<?php
$placeName = urlencode($_GET['place']);
$apiKey = 'your_api_key';
 
$url = "https://restapi.amap.com/v3/place/text?keywords=$placeName&key=$apiKey";

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => $url,
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_FOLLOWLOCATION => true,
]);

$response = curl_exec($curl);

curl_close($curl);

$result = json_decode($response, true);

if ($result['status'] == '1') {
  $places = $result['pois'];

  foreach ($places as $place) {
    echo $place['name'] . ' - ' . $place['address'] . '<br>';
  }
} else {
  echo '搜索失败,请重试';
}
?>

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

展开阅读全文
相关内容