On Dec 5, 11:35 am, mahmudmia <[EMAIL PROTECTED]> wrote: > Here is my web page link - > > http://98.131.90.6/gmaptest4_ie.aspx > > I have a database of airports, user provides an address, I geocode the > address then find the nearest 5 airports from DB. Then from Google I > get the distance & duration using GDirections. The found 5 airports > are listed below the map and when clicked - the driving directions are > given. > > When you people will run the application you will see that, it runs > OK. But ocassionally the output does not show. My questions - > > 1) I recursively called the loading function for the 5 airports. Is > this OK? Or should I use setTimeout also? > > 2) When an error occurs getting the duration/distane - error 604 is > returned. In that case actually I do want to continue for the other > points. So, instead of 5 airports, there may be 2 correctly returned. > > 3) put address - Rockford, IL, USA. The API could not find duration/ > distance to "Madison, WI: Truax Field" lat="43.14194444" > lng="-89.33694444". But maps.google.com page can. What's the problem?
The coordinates are too far from a road (they are in the middle of the airport). Your coordinates don't work: http://www.geocodezip.com/example_geo2.asp?addr1=Rockford,%20IL,%20USA&addr2=(43.14194444,%20-89.33694444)&geocode=1&geocode=2 But move it closer to a road: http://www.geocodezip.com/example_geo2.asp?addr1=Rockford,%20IL,%20USA&addr2=(43.1366,-89.345326)&geocode=1&geocode=2 and it will. -- Larry > > Thanks. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Maps-API?hl=en -~----------~----~----~----~------~----~------~--~---
