On Nov 15, 7:21 pm, Eve <[email protected]> wrote: > > On the page below the map should appear, but only appears text: > "Localizacion geográfica de Inmuebles :" > > http://rimmamarbella.com/es/se-alquila/2-urb-los-naranjos-de-marbella > > Do you think there is any solution??
Yes. This part is wrong: <h3>Localizacion geográfica de Inmuebles :</h3> <p><div id="jea_property_map"></div> </p> You have your map div inside a <p> which is not a particularly good idea. And the div has no size, so when the map is created at 100% size there is nothing to be 100% of. If you use percentages, then that percentage has to be calculated as a percentage of the containing element, so you need to make sure that every containing element -- all the way up to <html> if necessary -- can be calculated. -- 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.
