Question

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);
}
Was it helpful?

Solution

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top