我的应用程序使用Google Places API附近搜索来抓取离用户最近的位置。我指定了“https://developers.google.com/places/supported_types”上找到的所有可能类型。
我的搜索查询看起来像这样:“https://maps.googleapis.com/maps/api/place/nearbysearch/json?key=myKeyHere&location=%f,%f&rankby=distance&types=accounting|amusement_park|aquarium|art_gallery|atm|bakery|bank|bar|beauty_salon|bicycle_store|book_store|bowling_alley|bus_station|cafe ... university | veterinary_care | zoo”
但是到2017年2月16日,types参数将被弃用并替换为单个类型参数,因此我将无法再检索每个可能的附近位置。
我还有什么选择才能做到这一点?
感谢您的时间。
答案 0 :(得分:0)
只需省略types
参数即可。您希望API限制所有类型,这与根本不需要类型限制相同。您使用的是rankby=distance
,因此您无需设置比location
更多的参数。