我正在使用Google Places API URL来获取结果,我的搜索URL是:
https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=40.7127753,-74.0059728&radius=30000&keyword=Real Estate&key=my-api-key
我正在寻找半径30000米以内的房地产。现在,在这种情况下,我得到的结果要少得多,而半径进行的搜索要比上一次搜索得到的结果好得多。所有结果集也不同。每次我最多获得60个结果。每次搜索的60个结果是恒定的吗? 这样做的逻辑是什么?如何从搜索中获得60多个结果?
我不确定这样做的逻辑是什么。获得这些结果是否正确,或者我缺少某些东西?
感谢您关注我的问题。 :)
在此先感谢您的帮助! :)
$apiUrl = 'https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=40.7127753,-74.0059728&radius=50000&keyword=Real Estate&key=my-api-key';
$client = new \GuzzleHttp\Client();
$response = $client->request('GET', $apiUrl);