]> git.openstreetmap.org Git - rails.git/blob - app/views/site/index.rhtml
486686fa5e06eceec1b11218ce04ffc771276308
[rails.git] / app / views / site / index.rhtml
1 <%= render :partial => 'search' %>
2
3 <% if params['mlon'] and params['mlat'] %>
4 <% marker = true %>
5 <% mlon = params['mlon'] %> 
6 <% mlat = params['mlat'] %>
7 <% lon =  params['mlon'] %>
8 <% lat =  params['mlat']  %>
9 <% zoom =  params['zoom'] || '12' %>
10 <script type="text/javascript">
11   var mlat = <%= lat %>;
12   var mlon = <%= lon %>;
13 </script>
14 <% elsif @user and params['lon'].nil? and params['lat'].nil? %> 
15 <% lon =  @user.home_lon %>
16 <% lat =  @user.home_lat %>
17 <% zoom = '10' %>
18 <%else%>
19 <% lon =  params['lon'] || '-0.1' %>
20 <% lat =  params['lat'] || '51.5' %>
21 <% zoom =  params['zoom'] || '4' %>
22 <% end %>
23
24
25
26 <script type="text/javascript">
27   var lat = <%= lat %>;
28   var lon = <%= lon %>;
29   var zoom = <%= zoom %>;
30   var PI = 3.14159265358979323846;
31
32
33
34   <% if params['scale'] and params['scale'].length > 0 then %>
35   zoom = Math.log(360.0/(( <% print params['scale'].to_f() %> ) * 512.0)) / Math.log(2.0);
36   <% end %>
37   zoom = zoom;
38   lon = lon * 20037508.34 / 180;
39   lat = Math.log(Math.tan( (90 + lat) * PI / 360)) / (PI / 180);
40   lat = lat * 20037508.34 / 180;
41   <% if marker %>
42   mlon = mlon * 20037508.34 / 180;
43   mlat = Math.log(Math.tan( (90 + mlat) * PI / 360)) / (PI / 180);
44   mlat = mlat * 20037508.34 / 180;
45   <%end%>
46
47 </script>
48 <script type="text/javascript" src="/javascripts/OpenLayers.js"></script>
49
50 <script type="text/javascript">
51   <!--
52   var map, layer, markers;
53   var ie6 = ! ( window.addEventListener || window.XMLHttpRequest );
54
55   function init(){
56
57     OpenLayers.Util.onImageLoadError = function() {
58       this.src = "http://www.openstreetmap.org/javascripts/img/404.png";
59     }
60     map = new OpenLayers.Map( "map", 
61         {maxExtent: new OpenLayers.Bounds(-20037508.34,-20037508.34,20037508.34,20037508.34), maxZoomLevel:18, maxResolution:156543, units:'meters', projection: "EPSG:41001"} );
62     layer = new OpenLayers.Layer.LikeGoogle( "Mapnik", "http://tile.openstreetmap.org/", {type:'png'} );
63     map.addLayer(layer);
64     layer = new OpenLayers.Layer.LikeGoogle( "Osmarender", "http://dev.openstreetmap.org/~ojw/Tiles/tile.php/", {type:'png'} );
65     map.addLayer(layer);
66
67     //Marker stuff
68
69     <% if marker %>
70     markers = new OpenLayers.Layer.Markers("markers");
71     map.addLayer(markers); 
72
73     marker = new OpenLayers.Marker(new OpenLayers.LonLat(mlon,mlat));
74     markers.addMarker(marker);
75     <%end%>
76
77     map.addControl(new OpenLayers.Control.LayerSwitcher());
78     map.setCenter(new OpenLayers.LonLat(lon, lat), zoom);
79
80     map.events.register("moveend", map, updateLocation);
81     document.getElementById( 'map_OpenLayers_ViewPort' ).style.position = 'absolute';
82     if( ie6 ) {
83       handleResize();
84     }
85     updateLocation();
86   }        
87
88   function updateLocation() {
89     var lonlat = map.getCenter();
90
91     var lon_deg = (lonlat.lon / 20037508.34) * 180;
92     var lat_deg = (lonlat.lat / 20037508.34) * 180;
93     var PI = 3.14159265358979323846;
94     lat_deg = 180/PI * (2 * Math.atan(Math.exp(lat_deg * PI / 180)) - PI / 2);
95     var zoom = map.getZoom();
96
97     updatelinks(lon_deg,lat_deg,zoom);
98   }
99
100   function getStyle( el, property ) {
101     var style;
102     if( el.currentStyle ) {
103         style = el.currentStyle[property];
104     } else if( window.getComputedStyle ) {
105         style = document.defaultView.getComputedStyle(el,null).getPropertyValue(property);
106     } else {
107         style = el.style[property];
108     }
109     return style;
110   }
111   
112   function handleResize() {
113     var el = document.getElementById( 'map' );
114     var left = getStyle( el, 'left' );
115     var top = getStyle( el, 'top' );
116     var bottom = getStyle( el, 'bottom' );
117     var right = getStyle( el, 'right' );
118     var width = el.old_width;
119     if( ! width ) {
120         width = getStyle( el, 'width' );
121     }
122     var height = el.old_height;
123     if( ! height ) {
124         height = getStyle( el, 'height' );
125     }
126     var pwidth, pheight;
127     if( el.offsetParent.nodeName == 'BODY' || el.offsetParent.nodeName == 'HTML' ) {
128       if( typeof( window.innerWidth ) == 'number' ) {
129           pwidth = window.innerWidth;
130           height = window.innerHeight;
131       } else if( document.documentElement &&
132           ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
133           pwidth = document.documentElement.clientWidth;
134           pheight = document.documentElement.clientHeight;
135       } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
136           pwidth = document.body.clientWidth;
137           pheight = document.body.clientHeight;
138       }
139     } else {
140       pwidth = el.offsetParent.offsetWidth;
141       pheight = el.offsetParent.offsetHeight;
142     }
143     if( left != 'auto' && right != 'auto' && width == 'auto' ) {
144       el.old_width = width;
145       var new_width = (pwidth - el.offsetLeft - parseInt( right ) );
146       el.style.width = new_width + 'px';
147     }
148     if( top != 'auto' && bottom != 'auto' && height == 'auto' ) {
149       el.old_height = height;
150       var new_height = (pheight - el.offsetTop - parseInt( bottom ) );
151       el.style.height = new_height + 'px';
152     }
153     map.updateSize();
154     el.style.display = 'none';
155     setTimeout( function() {
156         el.style.display = '';
157         }, 200 );
158   }
159
160 if( ie6 ) {
161   window.onresize = handleResize;
162 }
163 window.onload = init;
164 // -->
165 </script>