On Nov 10, 12:40 pm, wisalex <[email protected]> wrote: > I use google AJAX loader.
You're not using it in the documented fashion, though. http://code.google.com/apis/maps/documentation/index.html#AJAX_Loader > When I load my map, the google map type selector become narrow (in > height). When I refresh map, it become more narrow. > Sorry for bad english. > Where is problem? The map type control has no text in it. That probably means that it's requesting text for a Ukrainian locale, based on your browser settings, and the API doesn't support hl=uk. Try using one of these google.load("maps", "2", {"language" : "uk"}); google.load("maps", "2", {"language" : "ru"}); Note also that you need to centre the map explicitly before you do anything else with it. You don't appear to be doing that at all. Andrew -- 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=.
