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.

Hi guys I have a google map integrated on part of my page and 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?

share|improve this question
2  
You might want to reformulate the question as "How can create a COM control that would tell IE to inject some Javascript into the page so that the Google Maps are always shown fullscreen" to prevent it from being closed as not programming related. – ilya n. Jun 21 '09 at 7:41
OH yeah - sorry bout that :) – Ali Jun 21 '09 at 8:09

5 Answers

up vote 10 down vote accepted

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.

share|improve this answer

If you have a map on your page all you need to do is write some javascript to resize the DIV that holds the map. I haven't implemented an example that resizes the DIV to fill the browser, but here is one that toggles the size of a map div from javascript (I use mooTools to set the style.width on the element, but you can use whatever you prefer to manipulate the DOM).

share|improve this answer
If you're using jQuery, you can use "animate" - docs.jquery.com/Effects/animate – Chris B Jun 22 '09 at 18:41
An excellent suggestion or "tween" if you are bovine inclined (mootools.net/docs/core/Fx/Fx.Tween). – RedBlueThing Jun 22 '09 at 23:43
Excellent. I was looking for something like this, but didn't know it until I saw it. Thanks for posting your sandbox for us to play with. – sehummel Jan 5 '12 at 20:37
@shummel7845 No problem :) – RedBlueThing Jan 5 '12 at 21:06

on click you have to resize your div where you have show the map.....i think its simple

share|improve this answer

On Dom ready:

  • Init map and set center
  • Get the current CSS size of the div containing the map

On enter-fullscreen-button click:

  • Update the CSS (size and position)
  • Trigger the resize map method
  • Set map center

On exit-fullscreen-button click:

  • Update the CSS (back to the initial size and position)
  • Trigger the resize map method
  • Set map center

You can find the code here

share|improve this answer

Now we have a Fullscreen API https://developer.mozilla.org/en/DOM/Using_full-screen_mode you just select the DOM element you want to set to fullscreen and call the fullscreen API on it. Something like this

var elem = document.getElementById("myvideo");
if (elem.requestFullScreen) {
  elem.requestFullScreen();
} else if (elem.mozRequestFullScreen) {
  elem.mozRequestFullScreen();
} else if (elem.webkitRequestFullScreen) {
  elem.webkitRequestFullScreen();
}
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.