- map.events.register("moveend", map, function() {
- var lonlat = map.getCenter();
+ document.cookie = "location=" + lonlat.lon + "," + lonlat.lat + "," + zoom + "," + layers;
+ }
+
+ function resizeContent() {
+ var content = $("content");
+ var rightMargin = parseInt(getStyle(content, "right"));
+ var bottomMargin = parseInt(getStyle(content, "bottom"));
+
+ content.style.width = document.documentElement.clientWidth - content.offsetLeft - rightMargin;
+ content.style.height = document.documentElement.clientHeight - content.offsetTop - bottomMargin;
+ }
+
+ function resizeMap() {
+ var centre = map.getCenter();
+ var zoom = map.getZoom();
+ var search_results_width = $("search_results").offsetWidth;
+
+ if (search_results_width > 0) {
+ search_results_width = search_results_width + 5
+ }
+
+ $("map").style.left = (search_results_width) + "px";
+ $("map").style.width = ($("content").offsetWidth - search_results_width) + "px";
+ $("map").style.height = ($("content").offsetHeight - 2) + "px";
+
+ map.setCenter(centre, zoom);
+ }
+
+ function handleResize() {
+ if (brokenContentSize) {
+ resizeContent();
+ }