我试图开车道路,我有OVER_QUERY_LIMIT的问题。我在oter主题中看到了类似的问题,但它仍然无法解决我的问题。下面我提供代码,我会很高兴提示。感谢
function initMap(startLat, startLng, endLat, endLng) {
var directionsService = new google.maps.DirectionsService;
var directionsDisplay = new google.maps.DirectionsRenderer;
var start = new google.maps.LatLng(startLat, startLng);
var end = new google.maps.LatLng(endLat, endLng);
calculateAndDisplayRoute(start, end, directionsService, directionsDisplay);
}
var i;
var j;
var delay;
function calculateAndDisplayRoute(start, end, directionsService, directionsDisplay) {
directionsService.route({
origin: start,
destination: end,
travelMode: google.maps.TravelMode.DRIVING
}, function(response, status) {
if (status === google.maps.DirectionsStatus.OK) {
var totaldistance = 0;
var route = response.routes[0];
// display total distance information.
for (var i = 0; i < route.legs.length; i++) {
totaldistance = totaldistance + route.legs[i].distance.value;
}
document.getElementById('distance').innerHTML += "<p>total distance is " + (totaldistance / 1000).toFixed(2) + " km</p>";
directionsDisplay.setDirections(response);
} else {
if (status == google.maps.GeocoderStatus.OVER_QUERY_LIMIT)
j -= 2;
else
alert("Geocode was not successful for the following reason: " + status);
}
})
;
}
google.maps.event.addDomListener(window, "load", initMap);
function addMarker(lat,lon,optionMarker)
{
optionMarker.position = new google.maps.LatLng(lat,lon);
var marker = new google.maps.Marker(optionMarker);
}
function mapStart()
{
var optionMap =
{
center: new google.maps.LatLng(50.27191 ,18.86805),
zoom: 10,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map"), optionMap);
for(i=0; i < points.length; i += 2)
{
addMarker(points[i],points[i+1],{});
for(j = i+2; j < points.length; j += 2 ) {
initMap(points[i], points[i + 1], points[j], points[j + 1]);
}
}
}
答案 0 :(得分:0)
显然,您正在使用Maps JavaScript API的会话服务限制。
无论有多少用户共享同一项目,服务请求都是每个用户会话的速率限制。首次加载服务API时,将为您分配初始请求配额。使用此配额后,API会按每秒对其他请求强制执行速率限制。如果在特定时间段内发出的请求太多,则API会返回OVER_QUERY_LIMIT响应代码。每会话速率限制可防止对批处理请求使用客户端服务。
https://developers.google.com/maps/documentation/javascript/usage
您通过向Google服务器发出路线请求的点重复循环。此循环行为可能会使客户端与Google之间的会话超载。
您应该尝试使用OVER_QUERY_LIMIT状态的尝试之间的延迟增加。通常,每次尝试都会通过乘法因子增加延迟,这种方法称为指数退避(https://en.wikipedia.org/wiki/Exponential_backoff)。