谷歌地点API:按国家筛选的地点搜索

11

我正在使用Google Place API中的文本搜索请求,并且想知道如何过滤特定国家的结果。有什么方法吗?

我的目标是通过指定国家来调用API并使用php管理json结果。

因此,这是一种查询。

https://maps.googleapis.com/maps/api/place/textsearch/json?query=pizza&sensor=true&key=mykey

我希望添加一个类似于&country=us的参数,但是好像不存在。

谢谢


可能是Google Places AutocompleteService filtering by country的重复问题。 - geocodezip
为什么是-1?我已经在stackoverflow上检查了答案,但没有回答我的问题。无论如何,我会编辑它以提供更多信息。 - Luca
请查看以下链接中的“components”参数选项:https://developers.google.com/places/documentation/autocomplete#place_autocomplete_requests - geocodezip
2
那个选项组件是用于地点自动完成而不是地点搜索。谢谢你一样。与此同时,我再扣除1分。我不明白为什么... - Luca
2
@Luca - 我也在寻找同样的东西。我唯一看到的就是要检查结果中的FormattedAddress,并查看是否包含该国家/地区。但是,我已经注意到有“USA”和“United States”等变体,所以我不确定那有多大帮助。 - Evan
以下每个答案都是不正确的。这是关于使用文本搜索而不是自动完成API,并通过国家进行限制。 - j0hnstew
5个回答

1

0
将国家代码作为参数传递到选项中的componentRestrictions。然后将此选项作为参数传递给google.maps.places.Autocomplete。
例如:
var options = {
  componentRestrictions: {country: 'in'}
};

autocomplete = new google.maps.places.Autocomplete(input, options);

2
这个问题是关于文本搜索,而不是自动完成。然而,这可能对其他人有用。 - Evan

0
for API : country:in

AutocompleteFilter typeFilter = new AutocompleteFilter.Builder()
        .setCountry("IN")
        .build();

0

我尝试寻找相同的过滤方式,但最终决定使用地理编码API

https://maps.googleapis.com/maps/api/geocode/json?address=SOME_VALUE&key=YOUR_KEY&language=en&components=country:US

最后一个查询参数components=country:US过滤请求(在我的示例中设置为美国)。

希望它能帮助到有同样问题的人。


-1
<script>
function initMap() {

var minZoomLevel = 7;

   var map = new google.maps.Map(document.getElementById('map'), {
      zoom: minZoomLevel,
      center: {lat: 24.4667, lng: 54.52901}
   });

   // Bounds for North America
   var allowedBounds = new google.maps.LatLngBounds(
     new google.maps.LatLng(24.4667, 54.3667)
     );

   // Listen for the dragend event
   google.maps.event.addListener(map, 'dragend', function() {
     if (allowedBounds.contains(map.getCenter())) return;

     // Out of bounds - Move the map back within the bounds

     var c = map.getCenter(),
         x = c.lng(),
         y = c.lat(),
         maxX = allowedBounds.getNorthEast().lng(),
         maxY = allowedBounds.getNorthEast().lat(),
         minX = allowedBounds.getSouthWest().lng(),
         minY = allowedBounds.getSouthWest().lat();

     if (x < minX) x = minX;
     if (x > maxX) x = maxX;
     if (y < minY) y = minY;
     if (y > maxY) y = maxY;

     map.setCenter(new google.maps.LatLng(y, x));
   });

   // Limit the zoom level
   google.maps.event.addListener(map, 'zoom_changed', function() {
     if (map.getZoom() < minZoomLevel) map.setZoom(minZoomLevel);
   });


   var input = (
    document.getElementById('pac-input')
  );

  var types = document.getElementById('type-selector');

  map.controls[google.maps.ControlPosition.TOP_LEFT].push(input);
  map.controls[google.maps.ControlPosition.TOP_LEFT].push(types);
    var options = {
    componentRestrictions: {country: 'AE'}
    };
    var autocomplete = new google.maps.places.Autocomplete(input,options);

  autocomplete.bindTo('bounds', map);
  var infowindow = new google.maps.InfoWindow();
  var marker = new google.maps.Marker({
    map: map,
    anchorPoint: new google.maps.Point(0, -29)
  });
  autocomplete.addListener('place_changed', function() {
    infowindow.close();
    marker.setVisible(false);
    var place = autocomplete.getPlace();
    if (!place.geometry) {
      window.alert("Autocomplete's returned place contains no geometry");
      return;
    }
    // If the place has a geometry, then present it on a map.
    if (place.geometry.viewport) {
      map.fitBounds(place.geometry.viewport);
    } else {
      map.setCenter(place.geometry.location);
      map.setZoom(17);  // Why 17? Because it looks good.
    }
    marker.setIcon(({
      url: place.icon,
      size: new google.maps.Size(71, 71),
      origin: new google.maps.Point(0, 0),
      anchor: new google.maps.Point(17, 34),
      scaledSize: new google.maps.Size(35, 35)
    }));
    marker.setPosition(place.geometry.location);
    marker.setVisible(true);
    var address = '';
    if (place.address_components) {
      address = [
        (place.address_components[0] && place.address_components[0].short_name || ''),
        (place.address_components[1] && place.address_components[1].short_name || ''),
        (place.address_components[2] && place.address_components[2].short_name || '')
      ].join(' ');
    }
    infowindow.setContent('<div><strong>' + place.name + '</strong><br>' + address);
    infowindow.open(map, marker);
  });





  // Sets a listener on a radio button to change the filter type on Places
  // Autocomplete.
  function setupClickListener(id, types) {
    var radioButton = document.getElementById(id);
    radioButton.addEventListener('click', function() {
      autocomplete.setTypes(types);
    });
  }
  setupClickListener('changetype-all', []);
  setupClickListener('changetype-address', ['address']);
  setupClickListener('changetype-establishment', ['establishment']);
  setupClickListener('changetype-geocode', ['geocode']);


}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=KEY&signed_in=true&libraries=places&callback=initMap" async defer></script>

2
问题是关于textSearch服务,而不是自动完成。 - thdoan

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接