官方接口地址: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; }復制代碼