setInterval javascript似乎没有很好的响应

时间:2012-04-23 11:55:54

标签: javascript asp.net-mvc google-maps-api-3

小总结。由于地理编码不允许大量同时请求,我必须在我的googlemap上显示超过11个标记,我想我会使用某种间隔来绕过同时请求限制。
我想在这里我会使用javascript中的setInterval函数。

这是我的代码

 function timeHackGeocode(location, name, contract, vestigingID)
    {
      setInterval(codeAddress(location, name, contract, vestigingID), 1000);
    }

  function collectingData() {
        @foreach (var item in Model) {
        @:timeHackGeocode("@item.StraatVestiging" + " " + "@item.nr" + "," + "@item.location","@item.name","@item.Contract", "@item.id");
         }        
      }


 function codeAddress(location, name, contract, vestigingID) {
        var address = location;
        var image;
        var zoomlevel; 
        geocoder.geocode({ 'address': address }, function (results, status) {
            if (status == google.maps.GeocoderStatus.OK) {
                    map.setCenter(results[0].geometry.location);
                     var infoboxPos = results[0].geometry.location;
                     var image = new google.maps.MarkerImage(returnImage(contract),
                      // This marker is 20 pixels wide by 32 pixels tall.
                      new google.maps.Size(30, 42),
                      // The origin for this image is 0,0.
                      new google.maps.Point(40,45),
                      // The anchor for this image is the base of the flagpole at 0,32.
                      new google.maps.Point(0, 32));

                     var marker = createMarkers(results[0].geometry.location, contract)

                         google.maps.event.addListener(marker, 'mouseover', function() { 
                         infobox.open(map, marker);
                         infobox.setOptions(infoboxOptions(boxText(name, contract, vestigingID), infoboxPos));

                     });
            } else {
              // alert("Geocode was not successful for the following reason: " + status);
            }   
        });        
    }

不幸的是,这似乎不起作用,我尝试了各种不同的设置。 https://developer.mozilla.org/en/DOM/window.setInterval

有没有人知道发生了什么?

PS。我将通过已经拥有经度和经度来改变这种黑客攻击,但是现在我希望能够让它发挥作用。

建议非常感谢。

2 个答案:

答案 0 :(得分:0)

如果您需要将参数传递给回调函数,但需要它在Internet Explorer中工作,而Internet Explorer不支持使用setInterval()发送其他参数,请使用匿名函数来调用您的回调。

var time =setInterval(function(){ codeAddress(location, name, contract, vestigingID); },1000);

答案 1 :(得分:0)

可以绕过速率限制。请参阅Google Map V3 : Only some markers are displayed,这是完全相同的问题。

这是答案的相关部分:

  

您需要减慢请求速度。当您提交更多请求时,您可能需要将它们放慢速度以满足地理编码器的要求。我在http://acleach.me.uk/gmaps/v3/plotaddresses.htm创建了一个版本3示例(来自着名的第2版示例) - 您可以看到它在请求之间延迟100毫秒,但需要在二十次迭代后减慢到大约150毫秒。