]> git.openstreetmap.org Git - rails.git/blob - app/views/site/index.rhtml
de1de19f4a3c505519b006bc9a6eb7e871d8428f
[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 t('layouts.home'), "setPosition(#{@user.home_lat}, #{@user.home_lon}, 10)", { :title => t('layouts.home_tooltip') } %> |
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><%= t 'site.index.js_1' %></p>
14     <p><%= t 'site.index.js_2' %></p>
15     <p><%= t 'site.index.js_3' %></p>
16   </div>
17 </noscript>
18
19 <div id="map">
20 <div id="permalink"><a href="/" id="permalinkanchor"><%= t 'site.index.permalink' %></a></div>
21 </div> 
22
23 <div id="attribution">
24   <table width="100%">
25     <tr>
26       <td align="center"><%=
27         I18n.t('site.index.license.notice',
28           :license_name => ('<a href="' + t('site.index.license.license_url') + '">' + t('site.index.license.license_name') + '</a>'),
29           :project_name => ('<a href="' + t('site.index.license.project_url') + '">' + t('site.index.license.project_name') + '</a>'))
30         %></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   OpenLayers.Lang.setCode("<%= I18n.locale.to_s %>");
101
102   function mapInit(){
103     map = createMap("map");
104
105     <% unless OSM_STATUS == :api_offline or OSM_STATUS == :database_offline %>
106     map.dataLayer = new OpenLayers.Layer("Data", { "visibility": false });
107     map.dataLayer.events.register("visibilitychanged", map.dataLayer, toggleData);
108     map.addLayer(map.dataLayer);
109     <% end %>
110
111     <% if bbox %>
112     var bbox = new OpenLayers.Bounds(<%= minlon %>, <%= minlat %>, <%= maxlon %>, <%= maxlat %>);
113
114     setMapExtent(bbox);
115     <%    if box %>
116     // IE requires Vector layers be initialised on page load, and not under deferred script conditions
117     Event.observe(window, 'load', function() {addBoxToMap(bbox)});
118     <%    end %>
119     <% else %>
120     var centre = new OpenLayers.LonLat(<%= lon %>, <%= lat %>);
121     var zoom = <%= zoom %>;
122
123     <%    if params['scale'] and params['scale'].length > 0 then %>
124     zoom = scaleToZoom(<%= params['scale'].to_f() %>);
125     <%    end %>
126
127     setMapCenter(centre, zoom);
128     <% end %>
129
130     <% if !layers.nil? and !layers.empty? %>
131     setMapLayers("<%= layers %>");
132     <% end %>
133
134     <% if marker %>
135     marker = addMarkerToMap(new OpenLayers.LonLat(<%= mlon %>, <%= mlat %>));
136     <% end %>
137
138     map.events.register("zoomend", map, updateKey);
139
140     map.events.register("moveend", map, updateLocation);
141     map.events.register("changelayer", map, updateLocation);
142     updateLocation();
143
144     handleResize();
145   }
146
147   function toggleData() {
148     if (map.dataLayer.visibility) {
149       <%= remote_function :url => { :controller => 'browse', :action => 'start' } %>
150     } else {
151       closeSidebar();
152     }
153   }
154
155   function getPosition() {
156     return getMapCenter();
157   }
158
159   function setPosition(lat, lon, zoom) {
160     var centre = new OpenLayers.LonLat(lon, lat);
161
162     setMapCenter(centre, zoom);
163
164     if (marker)
165       removeMarkerFromMap(marker);
166
167     marker = addMarkerToMap(centre, getArrowIcon());
168   }
169
170   function updateLocation() {
171     var lonlat = getMapCenter();
172     var zoom = map.getZoom();
173     var layers = getMapLayers();
174     var extents = getMapExtent();
175     var expiry = new Date();
176
177     updatelinks(lonlat.lon, lonlat.lat, zoom, layers, extents.left, extents.bottom, extents.right, extents.top);
178
179     expiry.setYear(expiry.getFullYear() + 10); 
180     document.cookie = "_osm_location=" + lonlat.lon + "|" + lonlat.lat + "|" + zoom + "|" + layers + "; expires=" + expiry.toGMTString();
181   }
182
183   function resizeContent() {
184     var content = $("content");
185     var rightMargin = parseInt(getStyle(content, "right"));
186     var bottomMargin = parseInt(getStyle(content, "bottom"));
187
188     content.style.width = document.documentElement.clientWidth - content.offsetLeft - rightMargin;
189     content.style.height = document.documentElement.clientHeight - content.offsetTop - bottomMargin;
190   }
191   
192   function resizeMap() {
193     var centre = map.getCenter();
194     var zoom = map.getZoom();
195     var sidebar_width = $("sidebar").offsetWidth;
196
197     if (sidebar_width > 0) {
198       sidebar_width = sidebar_width + 5
199     }
200
201     $("map").style.left = (sidebar_width) + "px";
202     $("map").style.width = ($("content").offsetWidth - sidebar_width) + "px";
203     $("map").style.height = ($("content").offsetHeight - 2) + "px";
204
205     map.setCenter(centre, zoom);
206   }
207
208   function handleResize() {
209     if (brokenContentSize) {
210       resizeContent();
211     }
212
213     resizeMap();
214   }
215   
216   mapInit();
217
218   window.onload = handleResize;
219   window.onresize = handleResize;
220
221   <% if params['action'] == 'export' %>
222   <%= remote_function :url => { :controller => 'export', :action => 'start' } %>
223   <% end %>
224 // -->
225 </script>