> sorry I'm confused by your explanation, I'm new here. > can help with details?
You are just loading scripts in a jumble. Script modules like keydragzoom need to be loaded after the API that they depend on, so timing is important. What gets loaded first and what gets loaded afterwards is important. You have chosen to load the Maps API asynchronously, which makes it much more difficult to load other scripts (like keydragzoom) afterwards. If you need to do it that way, you will have to find out more about loading scripts asynchronously. Or, as suggested, don't load the Maps API asynchronously at all - just load it in an ordinary <script> tag ... and then load the scripts that need to come afterwards in ordinary <script> tags that you place afterwards. -- You received this message because you are subscribed to the Google Groups "Google Maps JavaScript API v3" 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-js-api-v3?hl=en.
