On Apr 1, 1:54 pm, scleary <[email protected]> wrote:
> The only CSS I have is on the map container, the outer div to the map,
> called googlemap-grid:
>
> #googlemap-grid {
>     width: 990px; height: 600px;
>     border: 1px solid #e99b55;
>     margin-bottom: 20px;
>
> }
>
> Then of course as the page says, there is style on the main googlemap div,
> the map itself:
>
> #googlemap {
>     width: 990px;
>     height: 600px;    
>
> }


The normal advice is to either:
1. run the javascript that creates and initializes the map object in a
body onload function
or
2. put the inline javascript that creates and initializes the map
object at the very end of your html (just before the </body> tag

Your script is inline and not at the bottom.

The other piece of advice is make sure your html is valid:
http://validator.w3.org/check?uri=http%3A%2F%2Fwww.stephen-cleary.com%2FOurFibro%2Fsite%2Fmap.php&charset=(detect+automatically)&doctype=Inline&group=0

(but I don't see any errors that might cause this problem, doesn't
mean they aren't there though)

  -- Larry

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps JavaScript API v3" 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-js-api-v3?hl=en.

Reply via email to