On Dec 16, 4:50 am, Philip <[email protected]> wrote: > I collect all the javascript errors that occurr on my website and post > them back to my server where they get inserted into the apache > error_log.
Why do you do that? Doing that must lead to confuse server errors with client errors - very different things. (And it could also mean that you don't test you client code sufficiently). I think your question is not generally an API question but a question of how to debug Javascript. Javascript is executed by the client, so you can only debug it on clients side, for example using the Error Console in Firefox or better Firebug. The errors you posted are mainly caused by bugs in your own code. They are most likely not errors in the API code. So the only way to find such errors is to debug your Javascript code. And that is only possible when you provide a link to your map. This is one reason why the posting guide lines are asking to post a link. http://groups.google.com/group/Google-Maps-API/web/why-including-a-link-is-critical -- 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.
