4

我想使用 google places 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 附近搜索中指定多个名称参数?

4

2 回答 2

0

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

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();
}
于 2017-05-29T10:43:28.767 回答
-1

您必须在请求变量的“名称”字段中指定不同的名称。用 | 分隔它们 并用引号包围。

var request = {
  location: new google.maps.LatLng(-33.8665433,151.1956316),
  radius: '500',
  name: "name1|name2|name3",
  types: ['store']
};

service = new google.maps.places.PlacesService(map);
service.nearbySearch(request, callback);

https://developers.google.com/maps/documentation/javascript/places#place_search_requests

于 2013-12-13T22:54:27.457 回答