Google Maps Javascript API V3:搜索请求

时间:2011-06-07 12:52:37

标签: javascript google-maps-api-3

调用搜索服务api时

var pyrmont = new google.maps.LatLng(-33.8665433,151.1956316);
var request = { location: pyrmont, radius: '500', types: ['store'] };
service = new google.maps.places.PlacesService(map);
service.search(request, callback);
  1. 是否需要给出搜索区域的位置/半径?
  2. 如果我想搜索整个世界中某个位置,而不是像谷歌那样在http://maps.google.com/指定区域内搜索。
  3. ---更新---

    这是我更新的代码@Trott建议但我在回调函数中获得status =“ZERO_RESULTS”。

    var keyword='search placename';
    var request = { name : keyword,
    bounds : new google.maps.LatLngBounds(
    google.maps.LatLng(-89.999999,-179.999999),
    google.maps.LatLng(89.999999,179.999999)
    )};
    service = new google.maps.places.PlacesService(map);
    service.search(request, callback);
    
    function callback(results, status)
    {
        console.log("status="+status);
        if ( status == google.maps.places.PlacesServiceStatus.OK)
        {
            for (var i = 0; i < results.length; i++)
            console.log(results[i]); 
        }
    }
    

    我做错了什么?

1 个答案:

答案 0 :(得分:4)

  1. search()的调用必须包含位置和半径,或者包含边界(作为LatLngBounds对象)。这在http://code.google.com/apis/maps/documentation/javascript/places.html#place_search_requests

  2. 中有记录
  3. 如果指定覆盖整个世界的LatLngBnds,您可以看到会发生什么。没有尝试过,但如果它有效,那应该具有搜索整个世界的效果,而不必偏向某个特定的位置。

  4. LatLngBounds记录在http://code.google.com/apis/maps/documentation/javascript/reference.html#LatLngBounds。我想你想做这样的事情:

    var sw = new google.maps.LatLng(-89.999999,-179.999999);
    var ne = new google.maps.LatLng(89.999999,179.999999);
    var bounds = new google.maps.LatLngBounds(sw,ne);