高德地图提供了一套丰富的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 '搜索失败,请重试'; } ?>
上面是“php中使用高德地图API实现地名模糊搜索”的全面内容,想了解更多关于 php入门 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_12144.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!