在特定 bbox 中列出的位置数
Number of the places listed at a specific bbox
目前使用区域的bbox坐标搜索地点时出现结果数量问题
我的问题是:
1) 是否有任何解决方案可以使每次搜索获得超过 80 个结果? - 最多 500 个-
2)(这个问题是针对 https://developer.here.com/ 的)如果在特定的 bbox 有超过 80 个位置,你如何 select 你列出的结果 - 因为你列出最多。其中 80 个?
谢谢。
你的问题很笼统。让我这样回答吧,在 REST API 中,有一个参数 'size' 指定了 "The maximum number of result items in each collection."(请注意,您不能保证总是得到那么多 POI)。
SDK或其他访问搜索系统的方式应该有类似的参数。
在他们的页面上,他们已经说他们只在指定区域内列出 "popular places"。
https://developer.here.com/api-explorer/rest/places/explore-places-bounding-box
他们还解释了如何计算 "popularity"。 "The popularity of the result, e.g. number of clicks, number of times it has been saved as a "最喜欢的。
https://developer.here.com/cn/documentation/places/topics/search-results-ranking.html
结论是,如果您通过使用区域的边界框坐标来使用搜索(地点)API,并且如果边界框中的地点超过 80 个,则结果非常不准确。谢谢你。
目前使用区域的bbox坐标搜索地点时出现结果数量问题
我的问题是:
1) 是否有任何解决方案可以使每次搜索获得超过 80 个结果? - 最多 500 个-
2)(这个问题是针对 https://developer.here.com/ 的)如果在特定的 bbox 有超过 80 个位置,你如何 select 你列出的结果 - 因为你列出最多。其中 80 个?
谢谢。
你的问题很笼统。让我这样回答吧,在 REST API 中,有一个参数 'size' 指定了 "The maximum number of result items in each collection."(请注意,您不能保证总是得到那么多 POI)。 SDK或其他访问搜索系统的方式应该有类似的参数。
在他们的页面上,他们已经说他们只在指定区域内列出 "popular places"。
https://developer.here.com/api-explorer/rest/places/explore-places-bounding-box
他们还解释了如何计算 "popularity"。 "The popularity of the result, e.g. number of clicks, number of times it has been saved as a "最喜欢的。
https://developer.here.com/cn/documentation/places/topics/search-results-ranking.html
结论是,如果您通过使用区域的边界框坐标来使用搜索(地点)API,并且如果边界框中的地点超过 80 个,则结果非常不准确。谢谢你。