Frage

I need to multiple geocoding request by gmaps api v3. In particular it work but only 5 request. This is my code (where city.length = 100):

for(i=0; i<city.length; i++) {

   $('#nome').html(city[i]);
   latLng = new google.maps.LatLng(lat[i],lng[i]);

   geocoder.geocode({
       'latLng': latLng,
       'partialmatch': true
   }, geocodeFunction);
}
War es hilfreich?

Lösung

The solution that I try to use is the google web service ;). It work!

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top