Google Places API 中有每秒查询限制,因此我需要减慢发送请求的循环:
function callback(results, status) {
if (status != google.maps.places.PlacesServiceStatus.OK) {
alert(status);
return;
}
for (var i = 0, result; result = results[i]; i++) {
RequestInfo(result);
}
}
知道我该怎么做吗?我有点新手。