騰訊地圖接口,根據關鍵字搜索附近地址


官方接口地址:lbs.qq.com/webservice_…

特點:可分頁,可配合前端實現搜索地址聯想功能

代碼:

/**  * @param string $region 限制城市范圍:如,僅獲取“廣州市”范圍內的提示內容  * @param string $keyword 用戶輸入的關鍵詞(希望獲取后續提示的關鍵詞)  * @param string $lng 定位坐標 中心點 經度  * @param string $lat 定位坐標 中心點 緯度  * @param int $page_index 分頁 當前頁  * @param int $page_size 分頁 每頁數量  * @return mixed  */ function searchAddress($region,$keyword,$lng,$lat,$page_index=1,$page_size=10){     $key = '';//騰訊地圖 key     $url = 'https://apis.map.qq.com/ws/place/v1/suggestion/?region='.$region.'&keyword='.$keyword.'&key='.$key.'&page_index='.$page_index.'&page_size='.$page_size.'&location='.$lat.','.$lng;         $result = file_get_contents($url);     $array = json_decode($result, true);     return $array; }復制代碼

 

文章轉載自 https://www.juchengvi.com/looknews/49


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM