n Nov 19, 11:54 am, sedoyksa <[email protected]> wrote: > i asked here sencha.com/forum about it > they say that its only to google map question, not extJS
I think it's likely to be an Ext question. However, at the moment there are all sorts of problems with your map page. - You have mismatched <div> and </div>. - You load ext.js after it's needed and StatusBar.js has an error. - I suspect that you load the Google Maps script after it's needed, too. http://validator.w3.org/check?uri=http%3A%2F%2Fsuprofitweb.ru%2Fgoogle%2Fmap.php&charset=%28detect+automatically%29&doctype=Inline&group=0 Always make sure your HTML is syntactically correct. Always load external script libraries first, before anything which relies on them. The order in which you load the external libraries may be important too. I'd do the Google script before the Ext one. Once the page actually runs a map, we can see what's needed. -- You received this message because you are subscribed to the Google Groups "Google Maps API V2" 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.
