]> git.openstreetmap.org Git - rails.git/blob - app/views/site/index.rhtml
new support for box=yes param on the homepage, and then link to this from various...
[rails.git] / app / views / site / index.rhtml
1 <% content_for :greeting do %>
2 <% if @user and !@user.home_lon.nil? and !@user.home_lat.nil? %>
3 <%= link_to_function 'home', "setPosition(#{@user.home_lat}, #{@user.home_lon}, 10)" %> |
4 <% end %>
5 <% end %>
6
7 <%= render :partial => 'sidebar', :locals => { :onopen => "resizeMap();", :onclose => "resizeMap();" } %>
8 <%= render :partial => 'key' %>
9 <%= render :partial => 'search' %>
10
11 <noscript>
12   <div id="noscript">
13     <p>You are either using a browser that doesn't support javascript, or you have disabled javascript.</p>
14     <p>OpenStreetMap uses javascript for its slippy map.</p>
15     <p>You may want to try the <a href="http://tah.openstreetmap.org/Browse/">Tiles@Home static tile browser</a> if you are unable to enable javascript.</p>
16   </div>
17 </noscript>
18
19 <div id="map">
20 <div id="permalink"><a href="/" id="permalinkanchor">Permalink</a></div>
21 </div> 
22
23 <div id="attribution">
24   <table width="100%">
25     <tr>
26       <td align="left">http://creativecommons.org/licenses/by-sa/2.0/</td>
27       <td align="right">http://openstreetmap.org/</td>
28     </tr>
29     <tr>
30       <td colspan="2" align="center">Licensed under the Creative Commons Attribution-Share Alike 2.0 license by the OpenStreetMap project and its contributors.</td>
31     </tr>
32   </table>
33 </div>
34
35 <%
36 if params['mlon'] and params['mlat'] 
37         marker = true
38         mlon = h(params['mlon'])
39         mlat = h(params['mlat'])
40 end
41
42 if params['minlon'] and params['minlat'] and params['maxlon'] and params['maxlat']
43         bbox = true
44         minlon = h(params['minlon'])
45         minlat = h(params['minlat'])
46         maxlon = h(params['maxlon'])
47         maxlat = h(params['maxlat'])
48         box = true if params['box']=="yes" 
49 end
50
51 # Decide on a lat lon to initialise the map with. Various ways of doing this
52 if params['lon'] and params['lat'] 
53         lon =  h(params['lon'])
54         lat =  h(params['lat'])
55         zoom =  h(params['zoom'] || '5')
56         layers = h(params['layers'])
57         
58 elsif params['mlon'] and params['mlat']
59         lon = h(params['mlon']) 
60         lat = h(params['mlat'])
61         zoom =  h(params['zoom'] || '12')
62         layers = h(params['layers'])
63         
64 elsif cookies.key?("_osm_location")
65         lon,lat,zoom,layers = cookies["_osm_location"].split("|")
66         
67 elsif @user and !@user.home_lon.nil? and !@user.home_lat.nil? 
68         lon =  @user.home_lon
69         lat =  @user.home_lat
70         zoom = '10'
71 else
72         session[:location] = OSM::IPLocation(request.env['REMOTE_ADDR']) unless session[:location]
73
74         if session[:location]
75                 bbox = true
76                 minlon = session[:location][:minlon]
77                 minlat = session[:location][:minlat]
78                 maxlon = session[:location][:maxlon]
79                 maxlat = session[:location][:maxlat]
80         else
81                 lon =  '-0.1' 
82                 lat =  '51.5' 
83                 zoom =  h(params['zoom'] || '5') 
84         end
85         layers = h(params['layers']) 
86 end
87 %>
88
89 <%= javascript_include_tag '/openlayers/OpenLayers.js' %>
90 <%= javascript_include_tag '/openlayers/OpenStreetMap.js' %>
91 <%= javascript_include_tag 'map.js' %>
92
93
94 <script type="text/javascript" defer="defer">
95   <!--
96   var brokenContentSize = $("content").offsetWidth == 0;
97   var marker;
98   var map;
99
100   function mapInit(){
101     map = createMap("map");
102
103     <% unless OSM_STATUS == :api_offline or OSM_STATUS == :database_offline %>
104     map.dataLayer = new OpenLayers.Layer("Data", { "visibility": false });
105     map.dataLayer.events.register("visibilitychanged", map.dataLayer, toggleData);
106     map.addLayer(map.dataLayer);
107     <% end %>
108
109     <% if bbox %>
110     var bbox = new OpenLayers.Bounds(<%= minlon %>, <%= minlat %>, <%= maxlon %>, <%= maxlat %>);
111
112     setMapExtent(bbox);
113     <%    if box %>
114     box = addBoxToMap(bbox);
115     <%    end %>
116     <% else %>
117     var centre = new OpenLayers.LonLat(<%= lon %>, <%= lat %>);
118     var zoom = <%= zoom %>;
119
120     <%    if params['scale'] and params['scale'].length > 0 then %>
121     zoom = scaleToZoom(<%= params['scale'].to_f() %>);
122     <%    end %>
123
124     setMapCenter(centre, zoom);
125     <% end %>
126
127     <% if !layers.nil? and !layers.empty? %>
128     setMapLayers("<%= layers %>");
129     <% end %>
130
131     <% if marker %>
132     marker = addMarkerToMap(new OpenLayers.LonLat(<%= mlon %>, <%= mlat %>));
133     <% end %>
134
135     map.events.register("zoomend", map, updateKey);
136
137     map.events.register("moveend", map, updateLocation);
138     map.events.register("changelayer", map, updateLocation);
139     updateLocation();
140
141     handleResize();
142   }
143
144   function toggleData() {
145     if (map.dataLayer.visibility) {
146       <%= remote_function :url => { :controller => 'browse', :action => 'start' } %>
147     } else {
148       closeSidebar();
149     }
150   }
151
152   function getPosition() {
153     return getMapCenter();
154   }
155
156   function setPosition(lat, lon, zoom) {
157     var centre = new OpenLayers.LonLat(lon, lat);
158
159     setMapCenter(centre, zoom);
160
161     if (marker)
162       removeMarkerFromMap(marker);
163
164     marker = addMarkerToMap(centre, getArrowIcon());
165   }
166
167   function updateLocation() {
168     var lonlat = getMapCenter();
169     var zoom = map.getZoom();
170     var layers = getMapLayers();
171     var extents = getMapExtent();
172
173     updatelinks(lonlat.lon, lonlat.lat, zoom, layers, extents);
174
175     document.cookie = "_osm_location=" + lonlat.lon + "|" + lonlat.lat + "|" + zoom + "|" + layers;
176   }
177
178   function resizeContent() {
179     var content = $("content");
180     var rightMargin = parseInt(getStyle(content, "right"));
181     var bottomMargin = parseInt(getStyle(content, "bottom"));
182
183     content.style.width = document.documentElement.clientWidth - content.offsetLeft - rightMargin;
184     content.style.height = document.documentElement.clientHeight - content.offsetTop - bottomMargin;
185   }
186   
187   function resizeMap() {
188     var centre = map.getCenter();
189     var zoom = map.getZoom();
190     var sidebar_width = $("sidebar").offsetWidth;
191
192     if (sidebar_width > 0) {
193       sidebar_width = sidebar_width + 5
194     }
195
196     $("map").style.left = (sidebar_width) + "px";
197     $("map").style.width = ($("content").offsetWidth - sidebar_width) + "px";
198     $("map").style.height = ($("content").offsetHeight - 2) + "px";
199
200     map.setCenter(centre, zoom);
201   }
202
203   function handleResize() {
204     if (brokenContentSize) {
205       resizeContent();
206     }
207
208     resizeMap();
209   }
210   
211   mapInit();
212
213   window.onload = handleResize;
214   window.onresize = handleResize;
215
216   <% if params['action'] == 'export' %>
217   <%= remote_function :url => { :controller => 'export', :action => 'start' } %>
218   <% end %>
219 // -->
220 </script>