作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用谷歌地点 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
最佳答案
如果要使用多种类型进行搜索,可以使用按位 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/
我是一名优秀的程序员,十分优秀!