DÜZENLE:
Bu çözümün saf js'de olduğunu söylemeyi unuttum, ihtiyacınız olan tek şey vaatleri destekleyen bir tarayıcıdır https://developer.mozilla.org/it/docs/Web/JavaScript/Reference/Global_Objects/Promise
Hala bunu başarması gerekenler için, vaatleri zaman aşımlarıyla birleştiren kendi çözümümü yazdım.
Kod:
var Geolocalizer = function () {
this.queue = [];
this.resolved = [];
this.geolocalizer = new google.maps.Geocoder();
};
Geolocalizer.prototype = {
Localize: function ( needles ) {
var that = this;
for ( var i = 0; i < needles.length; i++ ) {
this.queue.push(needles[i]);
}
return new Promise (
function (resolve, reject) {
that.resolveQueueElements().then(function(resolved){
resolve(resolved);
that.queue = [];
that.resolved = [];
});
}
);
},
resolveQueueElements: function (callback) {
var that = this;
return new Promise(
function(resolve, reject) {
(function loopWithDelay(such, queue, i){
console.log("Attempting the resolution of " +queue[i-1]);
setTimeout(function(){
such.find(queue[i-1], function(res){
such.resolved.push(res);
});
if (--i) {
loopWithDelay(such,queue,i);
}
}, 1000);
})(that, that.queue, that.queue.length);
var it = setInterval(function(){
if (that.queue.length == that.resolved.length) {
resolve(that.resolved);
clearInterval(it);
}
}, 1000);
}
);
},
find: function (s, callback) {
this.geolocalizer.geocode({
"address": s
}, function(res, status){
if (status == google.maps.GeocoderStatus.OK) {
var r = {
originalString: s,
lat: res[0].geometry.location.lat(),
lng: res[0].geometry.location.lng()
};
callback(r);
}
else {
callback(undefined);
console.log(status);
console.log("could not locate " + s);
}
});
}
};
Lütfen bunun, google haritalar işlerini halletmek için yazdığım daha büyük bir kitaplığın bir parçası olduğunu unutmayın, bu nedenle yorumlar kafa karıştırıcı olabilir.
Kullanım oldukça basittir, ancak yaklaşım biraz farklıdır: her seferinde bir adresi döngülemek ve çözmek yerine, sınıfa bir dizi adres iletmeniz gerekecek ve aramayı kendi başına halledecek ve bir söz verecektir. , çözümlendiğinde, tüm çözümlenmiş (ve çözümlenmemiş) adresleri içeren bir dizi döndürür.
Misal:
var myAmazingGeo = new Geolocalizer();
var locations = ["Italy","California","Dragons are thugs...","China","Georgia"];
myAmazingGeo.Localize(locations).then(function(res){
console.log(res);
});
Konsol çıkışı:
Attempting the resolution of Georgia
Attempting the resolution of China
Attempting the resolution of Dragons are thugs...
Attempting the resolution of California
ZERO_RESULTS
could not locate Dragons are thugs...
Attempting the resolution of Italy
Döndürülen nesne:
Bütün sihir burada gerçekleşir:
(function loopWithDelay(such, queue, i){
console.log("Attempting the resolution of " +queue[i-1]);
setTimeout(function(){
such.find(queue[i-1], function(res){
such.resolved.push(res);
});
if (--i) {
loopWithDelay(such,queue,i);
}
}, 750);
})(that, that.queue, that.queue.length);
Temel olarak, her bir öğeyi aralarında 750 milisaniye gecikmeyle döngüler, dolayısıyla her 750 milisaniyede bir adres kontrol edilir.
Daha fazla test yaptım ve 700 milisaniyede bile bazen QUERY_LIMIT hatası aldığımı, 750 ile ise hiç sorun yaşamadığımı öğrendim.
Her durumda, daha düşük bir gecikmeyle kendinizi güvende hissediyorsanız yukarıdaki 750'yi düzenlemekten çekinmeyin.
Umarım bu yakın gelecekte birine yardımcı olur;)