Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I really hope someone can advise on displaying a google map from a hidden div.

I have a google map which I want to show a user if they click on a link ie, Show Map.

Putting the map in a hidden div just does not work at all so I went with hiding the map -1000px on a position absolute css value.

This has given me much better results but when I use css to bring the map back in only have of it shows.

http://screencast.com/t/MTMyOGZmNW

Can anyone give me advise on the best way to have a hidden map become visible after I peform a show ?

Hope someone can advise.

Thanks

share|improve this question

4 Answers

up vote 14 down vote accepted

You needn't bother with the absolute position and all that. Let the div be hidden until necessary, then show it and call google.maps.event.trigger(map, 'resize')(v3) or map.checkResize()(v2)

share|improve this answer
Hey Thank you. I tried map.checkResize() for V2 and im getting error map is not defined. And yes I know I am using v2. Any suggestions ? – Lee Sep 23 '10 at 22:22
Aghh I got it. I am using a jQuery plugin. $.googleMaps.gMap – Lee Sep 23 '10 at 22:25
When do you call the google.maps.event.trigger(map, 'resize') ? can you put that on the onclick event of the div that is hidden (and then displayed) when you click on the link? – Bill Nov 4 '10 at 14:37
Sure... just make it's called after the div is displayed. If its an animated opening, then after the animation fully completes. – Sudhir Jonathan Nov 4 '10 at 16:41
Just wanted to add to this...if you have been using the map.fitBounds() method you will need to make sure the call to that is done after this trigger! – KingCronus Oct 22 '12 at 13:36

Have you tried calling the resize event of the map?

Google Maps API - Map

share|improve this answer

Why not defer rendering of the map until the div is shown?

rough code:

$("button").click(function() {
   $(mapDiv).show();
   new google.maps.Map(mapDiv, opts);
});
share|improve this answer

what worked for me is using setTimeout() :

    //this slides the map container div into view
    $('#mapContainer').stop().slideDown(400);
    //this delays the loading and it works
    setTimeout(function(){
        function initialize() {
        var mapOptions = {
            center: new google.maps.LatLng(47.445279, 19.132689),
            zoom: 14,
            mapTypeId: google.maps.MapTypeId.ROADMAP
        };
        var map = new google.maps.Map(document.getElementById("mapContainer"),
            mapOptions);
        }
        initialize(); 
    },400);
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.