调用搜索服务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);
---更新---
这是我更新的代码@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]);
}
}
我做错了什么?
答案 0 :(得分:4)
对search()
的调用必须包含位置和半径,或者包含边界(作为LatLngBounds对象)。这在http://code.google.com/apis/maps/documentation/javascript/places.html#place_search_requests。
如果指定覆盖整个世界的LatLngBnds,您可以看到会发生什么。没有尝试过,但如果它有效,那应该具有搜索整个世界的效果,而不必偏向某个特定的位置。
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);