On Nov 7, 5:13 am, bjornbak <[EMAIL PROTECTED]> wrote: > I'm trying to load a KML file on to an API based map, but it doesn't > work. The map is all white and the Error Console is the following > errors: > > Error: b.L() is undefined > Source File:http://maps.google.com/intl/en_ALL/mapfiles/132e/maps2.api/main.js > Line: 165 > > Error: a.c.rb is undefined > Source File:http://maps.google.com/intl/en_ALL/mapfiles/132e/maps2.api/main.js > Line: 165 > > I demonstrate the error on the following > URL:http://test.dkhotellist.com/hoteldk/hotel/searchResultLC.do?language=... > > The KML I try to load > is:http://test.dkhotellist.com/hoteldk/hotel/kml.do?language=en®ionId... > > On the Google Maps website I can with succes import the KML into My > Maps both by saving on disc and upload and by referencing the above > link. > > Can anyone help?
The html on that page is not valid. May not be the problem, but it doesn't help. http://validator.w3.org/check?uri=http://test.dkhotellist.com/hoteldk/hotel/searchResultLC.do%3Flanguage%3Den%26navn%3D%26regionId%3D3%26lokalOmraadeId%3D-%26fra_day%3D07%26fra_month%3D12-2008%26fra%3D07-12-2008%26til_day%3D08%26til_month%3D12-2008%26til%3D%26voksne%3D1%26boern%3D0%26antalStjerner%3D%26sortering%3D&charset=(detect+automatically)&doctype=Inline&group=0 Your script is inline inside the DOM. IE won't like that. Put it at the bottom just before the </body> tag or in a function that is run by the page onload handler. -- Larry --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
