On Oct 10, 1:45 pm, oswaldmil <[EMAIL PROTECTED]> wrote: > I updated my website, and now the maps no longer shows the icons > (houses) on the map. However, whenever I preview (I am using > dreamweaver cs3) in browser they are there. I made sure the pictures > up loaded to the server. But are they in the right place? Your page is looking for: http://houstonnewhomesource.com/site/images/house1.gif and http://houstonnewhomesource.com/site/images/shadow.gif (which gives me error pages...)
> Also, the map looks correct in firefox, but > is 1/4 of the correct size and to the lower left in IE. You have your script inside the DOM (so it will be processed before the DOM is completely defined), IE doesn't like that (it tells the API the map div has 0 size). options: 1. define the script in the head, run it with an onload handler 2. define the script at the very end, just before the </body> tag 3. tell the api the size of you div with the size option to the GMap2 constructor. -- Larry > The URL of the map is: > > www.houstonnewhomesource.com/communities.html --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
