Ok I have determined that my map does not like the fact that the contentplaceholder of the master page is inside a table cell. If I place the contentplaceholder outside the table then the map works fine. However I have to have my table, does anyone have any suggestions on how to fix this?
Thanks and HELP, please. -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Rossko Sent: Tuesday, December 29, 2009 3:43 PM To: Google Maps API Subject: Re: Master Page and Info Window Zoomed map > I have a map with driving directions. When I click on the steps of > the driving directions the map that pops up in the info window is > blank in IE 8 (compatibality view). It's like this in IE6 too. There's a blank line before the <!DOCTYPE , this can cause it to be ignored by some browsers. The section beginning <!--[if lt IE 7]> introduces a <div> into the <head> section, which is invalid. This looks a bit wrong gdir = new GDirections(map, route); ... var opts = new GDirections(); opts.getSteps = true; gdir.load("from: " + from + " to: " + to, opts); The options are a literal, like var opts = { getSteps : true }; -- 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. -- 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.
