Google Places API 仅返回 2 个结果

问题描述 投票:0回答:1

我正在尝试使用 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,
  ]);

代码正在运行,但是无论我发送什么参数,我都只会返回两个结果。我是不是错过了什么?

google-api google-places-api
1个回答
0
投票

你找到解决办法了吗,我也有同样的问题

© www.soinside.com 2019 - 2024. All rights reserved.