我添加了一个分页,但现在它显示 20 个位置然后等待 2 秒,显示另外 20 个位置并再次等待几秒钟。我读到谷歌在 nextPage 调用之间增加了延迟。如果有办法消除这种延迟并一次性显示 60 个位置,我会很高兴
this.service.search(request, function(results, status, pagination) {
self.addPlaces(results, status, pagination);
if (pagination.hasNextPage) {
// sleep:0; this doesn't effect anything
pagination.nextPage();
}
});