If I set my width to 500px, I can get the map-canvas div to show up when I click my "get started" button. If I set my height/width to 100%, it doesn't show up.
I want to be sure my project will load on a mobile device so I don't want to use absolute dimensions.
Use can use absolute positioning without a
width | height
value, usingtop|left|bottom|right
with0
set as their values which would result in the#map-canvas
div
becoming the size of the containing element#second
as long as it is set to relative like so:Here is the updated bin.
I hope this helps!
See Mike Williams explaination of percentage sizing from his Google Maps Javascript API v2 tutorial