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?

link|improve this question

74% accept rate
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
feedback

4 Answers

up vote 3 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.

link|improve this answer
feedback

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).

link|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. – shummel7845 Jan 5 at 20:37
@shummel7845 No problem :) – RedBlueThing Jan 5 at 21:06
feedback

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

link|improve this answer
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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