> 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.


Reply via email to