Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I create a show full screen button to toggle my google maps page to be full screen?

I have a google map integrated on part of my page. I would like to create a toggle button to toggle the map between full screen and normal size. So when you click on it - the map extends to fill the whole browser screen, and click on it again, it is restored to its original size on the page. How would I do it?

like image 655
Ali Avatar asked Jun 21 '09 07:06

Ali


1 Answers

Here's a jQuery implementation.

$("#map_toggler").click(function() {
  $("#map").toggleClass("fullscreen")
});

In the CSS:

#map {
  width: 400px;
  height: 200px;
}

#map.fullscreen {
  position: fixed;
  width:100%;
  height: 100%;
}

Untested, but something along the lines of that should work.

like image 55
August Lilleaas Avatar answered Oct 16 '22 19:10

August Lilleaas