使用Google Places API列出城市中的主要医院

时间:2014-06-05 15:26:11

标签: google-maps google-maps-api-3 google-places-api

我们刚开始使用Google Places API来展示特定城市的医院。 我们遇到的问题是在使用typekeyword“医院”时,会显示各种诊所和医疗中心。

如果我浏览maps.google.com并使用Google自己的网站搜索“x城市的医院”,则只显示该城市的单一医院。

有没有人对如何筛选和展示单个医院而不是其他较小的医院有任何建议?

1 个答案:

答案 0 :(得分:0)

您可以使用prominence参数rankby选项,根据它们在该区域的重要程度来排列结果。在医院的情况下,这将很可能返回城镇/城市的主要医院作为第一选择。其他选项将按突出的降序排列,因此您可以检查第一个选项的每个地名,其中包括"诊所","医疗中心"," GP& #34;等,并在那里删除列表。

rankby — Specifies the order in which results are listed. Possible values are:
    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, the number of check-
    ins from your application, global popularity, and other factors.

Places Search documentation