gpt4 book ai didi

google-maps - 如何在对谷歌地点 api 的单个请求中对多个位置进行附近搜索

转载 作者:行者123 更新时间:2023-12-01 01:23:52 24 4
gpt4 key购买 nike

我想使用谷歌地点 api 附近搜索来获取多个特定位置。使用 NAME 参数查询多个位置的格式是什么。该 api 显示了单个位置的以下内容:

     https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=-33.8670522,151.1957362&radius=500&types=food&name=harbour&sensor=false&key=AddYourOwnKeyHere

我在文档中读到,您可以通过附加 | 来指定多种类型。 .

如何在google place api附近搜索中指定多个名称参数?

最佳答案

如果要使用多种类型进行搜索,可以使用按位 OR 运算符。请参阅我使用了 3 种不同类型的 append 的最后一行。
这是一个例子

private String getUrl(){

StringBuilder sb = new StringBuilder("https://maps.googleapis.com/maps/api/place/nearbysearch/json?");
if(mLastLocation != null){
sb.append("location=" + mLastLocation.getLatitude() + "," + mLastLocation.getLongitude());
}
sb.append("&radius=" + searchWithin);
sb.append("&sensor=true");
sb.append("&key=" + getString(R.string.map_api_key));
sb.append("&types=" + "restaurant|atm|bank");

return sb.toString();
}

关于google-maps - 如何在对谷歌地点 api 的单个请求中对多个位置进行附近搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14410009/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com