GDownloadUrl() is asynchronous. You're trying to use it synchronously. This line var catches = new getCatches(sid); uses getCatches() as a constructor, so catches becomes an object of the getCatches() Class. That's certainly not what you want.
Because the getCatches() Class doesn't have a toString() Method, attempts to use such objects in String context displays the default "Object [Object]" text. -- Mike Williams http://econym.org.uk/gmap --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
