我正在尝试使用 Ggoogle Places API 将最近的城市/城镇返回到一组坐标。
$nearbySearchUrl = "https://maps.googleapis.com/maps/api/place/nearbysearch/json?" . http_build_query([
'location' => $latitude . ',' . $longitude,
'radius' => 50000,
'type' => 'locality',
'key' => $apiKey,
]);
代码正在运行,但是无论我发送什么参数,我都只会返回两个结果。我是不是错过了什么?
你找到解决办法了吗,我也有同样的问题