On Jan 10, 8:01 am, cjbutler <[email protected]> wrote: > I have a small app that reads current geocode (or street address) from > a database, places a draggable marker on a map of the neighborhood and > allows the user to reposition the marker and then post the updated > geocodes back to the database. This has worked flawlessly for a couple > of years but has stopped working in the last few days. Now I get a map > of the world with the marker located correctly. Once I zoom in > sufficiently, I can drag the marker but doing so causes any number of > recursion errors to be reported in the FF error console. I'm thinking > that an API change by Google is at the root of my problem. My key > points to v 2.61 but if I use v2 I get the same results.
FYI - Google no longer keeps old versions around. V2.61 is now V2.s = V2.73 today > Here's a url > which leads to a page that will display the map once "show map" is > clicked. This will trigger the problem and might take a minute for > your browser to recover so you may want to view the code before > clicking!!. Any advice will be greatly appreciated. > > http://www.in-econdev.com/edit/mapnew.asp?siteid=289&post=2&st=2 That page calls the geocoder on the string "41.59824,-87.37692", which now (as of shortly after the reverse geocoder was released, a few months) returns multiple results: http://www.geocodezip.com/example_geo2.asp?addr1=41.59824,-87.37692&geocode=1 The first of which is: [ 0 ]: 600-698 Chase St, Gary, IN 46404, USA (41.5982574, -87.3757224) Which eventually shows up on your map. Your page is not valid html: http://validator.w3.org/check?uri=http://www.in-econdev.com/edit/mapnew.asp%3Fsiteid%3D289%26post%3D2%26st%3D2&charset=(detect+automatically)&doctype=Inline&group=0 no </head> <body> </body> or </html> tags. That might cause a problem, but I wouldn't expect it to. -- Larry --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
