-1

小总结。由于地理编码不允许大量同时请求并且我必须在我的 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

有谁知道发生了什么?

附言。我将来会通过已经有了纬度和经度来改变这个黑客,但现在我希望让它发挥作用。

建议非常感谢。

4

2 回答 2

0

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

var time =setInterval(function(){ codeAddress(location, name, contract, vestigingID); },1000);
于 2012-04-23T12:02:56.230 回答
0

绕过速率限制是可能的。请参阅Google Map V3:仅显示一些标记,这是完全相同的问题。

这是该答案的相关部分:

您需要减慢请求速度。当您提交更多请求时,您可能不得不进一步减慢它们的速度以满足地理编码器的要求。我在http://acleach.me.uk/gmaps/v3/plotaddresses.htm制作了一个版本 3 示例(来自一个著名的版本 2 示例) ——您可以看到它以请求之间的 100 毫秒延迟开始,但需要在 20 次迭代后减速到 150 毫秒左右。

于 2012-04-24T15:24:23.457 回答