Google 个地点 API 的附近搜索请求使用了哪种算法?

What kind of algorithm is used in Nearby Search requests of Google Places API?

我正在 Google 个地点 API 中使用附近搜索请求收集数据。 我知道这些请求 return 最多 60 个结果。

但是,我想知道这些结果是如何选择的。这 "Nearby Search request" 背后的算法是什么?

https://developers.google.com/places/web-service/search?hl=ja

Google 在描述 rankBy 参数时在 linked documentation 中回答了这个问题:

prominence (default). This option sorts results based on their importance. Ranking will favor prominent places within the specified area. Prominence can be affected by a place's ranking in Google's index, global popularity, and other factors.

如果您明确指定,您也可以按 distance 对结果进行排名。否则,按照上述,顺序默认为 prominence.

希望对您有所帮助!