vote up 2 vote down star
1

My site uses the Google Maps API. In situations where the connection to Google is slow and the map can't be rendered in a reasonable time, I'd like a Javascript callback method to be called such that I can display a useful message to the user rather than have a 'loading...' message constantly displayed.

Is this achievable?

flag

When you say "connection to Google" you mean the system that serves the map tiles? Or the system that serves the javascript API file(s)? – Crescent Fresh Jan 27 at 16:04
I mean the map rendering – Olly Jan 27 at 16:42

1 Answer

vote up 2 vote down check

Maybe you could have a sleep function that would check if the page has loaded yet, and after a certain time you take some sort of action.

See this posting for a situation similar to yours

setTimeout might be useful too.

so, you would have:

setTimeout((function() 
           { /* test if the page is loaded, 
                if so, call another function 
                or set a flag to get out*/
           }),2000); //set for 2 seconds
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.