On Jan 24, 1:39 pm, BSB <[email protected]> wrote: > http://www.usafengineers.com/bluemap.php > > Yesterday, I added an include(bluemap.php); to another page, so it > would show the map on that page also. Since the space for the map was > smaller on that page, I changed the width from 800px to 100%. It > worked fine. Today, the map does not display at all on either page. I > changed the width back back to 100px, and the map still does not > display.
100px is a little too narrow. I suspect that you changed it to 100%, looked at it in the cache, it worked. Now, you see the real page (with the 100% - which can be made to work BTW), and it doesn't work. You changed it to 100px, but still see the non-working version in the cache. Try forcing a refresh of the cache. > > Any advice would be appreciated. You are missing the DOCTYPE and <html> tags at the front of your document: http://validator.w3.org/check?uri=http%3A%2F%2Fwww.usafengineers.com%2Fbluemap.php&charset=%28detect+automatically%29&doctype=Inline&group=0 You have unterminated strings in your infowindows (linefeeds in the middle of strings) -- Larry -- 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.
