Reputation: 49384
I am using the code from here:
http://jquery-ui-map.googlecode.com/svn/trunk/demos/jquery-mobile-example.html#basic_map
My only problem is that I can't find how to make the map 100% Height.
Anyone had this problem before?
Upvotes: 10
Views: 18928
Reputation: 59455
You have to set height
for html
and body
tags also:
html, body { height: 100%; }
Look at this example.
Upvotes: 25