Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to display a sidebar on the left side of a google map. The sidebar width is 380px and I need the map canvas div to take up the remaining width but I have no luck so far accomplishing this.

The map div must have width and height declared, otherwise it doesn't work. I was trying to find a width 100% minus X pixels solution but no of them is working in this case.

Does anyone has an idea how to do it?

Thanks.

I tried this, but it looks that it doesn't apply to the map canvas div:

$(document).ready(function(){
$(window).width();  
$(document).width();

var width1 = $(document).width();
var width2 = $("#left").width();

var canvas_width = width1 – width2 + "px";

$('#map_canvas').width = canvas_width;

});

share|improve this question
Can't you calculate the dimension with js and than use js to add the map to the screen? – Jasper Kennis Aug 27 '11 at 9:08

2 Answers

up vote 0 down vote accepted

I am doing this (also sidebar + GM) with relative width and min-widths. I can toggle the sidebar visible / invisible. In order to save the original values see: Getting values of global stylesheet in jQuery ).

Btw, I think you assignment in js is wrong, it should be element.**style**.width or in jQuery $("#id").width(value): How to set width of a div in percent in JavaScript?

The styles:

#sideBar {
float: left;
width: 27.5%;
min-width: 275px;
height: 100%;
z-index: 0;
}

#sideBarLocation div {
display: inline;
}

#mapCanvas
{
width: 72.5%;
min-width: 725px;
height: 100%;
float: left;
z-index: 0;
}

with HTML:

<div id="sideBar">
            <!-- tab location starts here -->
            <table id="sideBarLocation" class="sideBarStandard">
            ...
            </table>
</div>
....
<!-- side bar ends here -->
<div id="mapCanvas"></div>
share|improve this answer
Thanks, yes I realized that JS is wrong above. Using your CSS the map only shows up if I change the position to absolute (it's relative somehow) and the map floats above my sidebar div on the left. Can you point me to an example where somebody achieved something like I want to? thx – elbatron Aug 27 '11 at 10:21
In my case the "inline" for the sidebar's sub element did the trick avoiding the floating. You should be able to replace the percentage value by absolute px width and change it with your above (fixed) calculation. However, you need then to recalculate when resizing the window. – Horst Walter Aug 27 '11 at 14:19

I had exactly the same problem, but just managed to fix it. For example, if your sidebar div is 200px wide, set an extra div container around the div in which Google Maps writes its content. For that div-container, set position absolute, left: 200px, right: 0, height: 100%. Works like a charm, also when resizing. Let me know if this solution doesn't match your situation.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.