]> git.openstreetmap.org Git - rails.git/blob - app/views/site/index.html.erb
Rework notes interface using OpenLayers and rails
[rails.git] / app / views / site / index.html.erb
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}, 15)", { :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">
21     <a href="/" id="permalinkanchor" class="geolink llz layers object"><%= t 'site.index.permalink' %></a><br/>
22     <a href="/" id="shortlinkanchor"><%= t 'site.index.shortlink' %></a>
23     <a href="#" id="createnoteanchor">Report a problem</a>      
24   </div>
25 </div>
26
27 <iframe id="linkloader" style="display: none">
28 </iframe>
29
30 <div id="attribution">
31   <table width="100%">
32     <tr>
33       <td class="attribution_license"><%= t'site.index.license.license_url' %></td>
34       <td class="attribution_project"><%= t'site.index.license.project_url' %></td>
35     </tr>
36     <tr>
37       <td colspan="2" class="attribution_notice"><%=
38         t'site.index.license.notice',
39           :license_name => t('site.index.license.license_name'),
40           :project_name => t('site.index.license.project_name')
41         %></td>
42     </tr>
43   </table>
44 </div>
45
46 <%
47 if params['mlon'] and params['mlat']
48     marker = true
49     mlon = h(params['mlon'])
50     mlat = h(params['mlat'])
51 end
52
53 if params['node'] or params['way'] or params['relation']
54     object = true
55     object_zoom = true
56
57     if params['node']
58         object_type = 'node'
59         object_id = h(params['node'])
60     elsif params['way']
61         object_type = 'way'
62         object_id = h(params['way'])
63     elsif params['relation']
64         object_type = 'relation'
65         object_id = h(params['relation'])
66     end
67 end
68
69 # Decide on a lat lon to initialise the map with. Various ways of doing this
70 if params['bbox']
71     bbox = true
72     minlon, minlat, maxlon, maxlat = h(params['bbox']).split(",")
73     layers = h(params['layers'])
74     box = true if params['box']=="yes"
75     object_zoom = false
76 elsif params['minlon'] and params['minlat'] and params['maxlon'] and params['maxlat']
77     bbox = true
78     minlon = h(params['minlon'])
79     minlat = h(params['minlat'])
80     maxlon = h(params['maxlon'])
81     maxlat = h(params['maxlat'])
82     layers = h(params['layers'])
83     box = true if params['box']=="yes"
84     object_zoom = false
85 elsif params['lon'] and params['lat']
86     lon =  h(params['lon'])
87     lat =  h(params['lat'])
88     zoom =  h(params['zoom'] || '5')
89     layers = h(params['layers'])
90     object_zoom = false
91 elsif params['mlon'] and params['mlat']
92     lon = h(params['mlon'])
93     lat = h(params['mlat'])
94     zoom =  h(params['zoom'] || '12')
95     layers = h(params['layers'])
96     object_zoom = false
97 elsif cookies.key?("_osm_location")
98     lon,lat,zoom,layers = cookies["_osm_location"].split("|")
99 elsif @user and !@user.home_lon.nil? and !@user.home_lat.nil?
100     lon =  @user.home_lon
101     lat =  @user.home_lat
102     zoom = '10'
103 else
104     unless STATUS == :database_readonly or STATUS == :database_offline
105       session[:location] = OSM::IPLocation(request.env['REMOTE_ADDR']) unless session[:location]
106     end
107
108     if session[:location]
109         bbox = true
110         minlon = session[:location][:minlon]
111         minlat = session[:location][:minlat]
112         maxlon = session[:location][:maxlon]
113         maxlat = session[:location][:maxlat]
114     else
115         lon =  '-0.1'
116         lat =  '51.5'
117         zoom =  h(params['zoom'] || '5')
118     end
119
120     layers = h(params['layers'])
121 end
122 %>
123
124 <%= javascript_include_tag '/openlayers/OpenLayers.js' %>
125 <%= javascript_include_tag '/openlayers/OpenStreetMap.js' %>
126 <%= javascript_include_tag 'map.js' %>
127
128 <%= render :partial => 'resize' %>
129
130 <script type="text/javascript">
131   var marker;
132   var map;
133
134   OpenLayers.Lang.setCode("<%= I18n.locale.to_s %>");
135
136   <% if @user %>
137     var loginName = "<%= @user.display_name %>"
138   <% end %>
139
140   function mapInit(){
141     map = createMap("map");
142
143     <% unless STATUS == :api_offline or STATUS == :database_offline %>
144       map.dataLayer = new OpenLayers.Layer("<%= I18n.t 'browse.start_rjs.data_layer_name' %>", { "visibility": false });
145       map.dataLayer.events.register("visibilitychanged", map.dataLayer, toggleData);
146       map.addLayer(map.dataLayer);
147
148       map.noteLayer = new OpenLayers.Layer.Vector("Notes", {
149           visibility: false,
150           projection: new OpenLayers.Projection("EPSG:4326"),
151           styleMap: new OpenLayers.StyleMap(new OpenLayers.Style({
152               graphicWidth: 22,
153               graphicHeight: 22,
154               graphicOpacity: 0.7,
155               graphicXOffset: -11,
156               graphicYOffset: -11
157           }, {
158               rules: [
159                   new OpenLayers.Rule({
160                       filter: new OpenLayers.Filter.Comparison({
161                           type: OpenLayers.Filter.Comparison.EQUAL_TO,
162                           property: "status",
163                           value: "open"
164                       }),
165                       symbolizer: {
166                           externalGraphic: "<%= image_path 'open_note_marker.png' %>"
167                       }
168                   }),
169                   new OpenLayers.Rule({
170                       filter: new OpenLayers.Filter.Comparison({
171                           type: OpenLayers.Filter.Comparison.EQUAL_TO,
172                           property: "status",
173                           value: "closed"
174                       }),
175                       symbolizer: {
176                           externalGraphic: "<%= image_path 'closed_note_marker.png' %>"
177                       }
178                  })
179               ]
180           })),
181           strategies: [
182               new OpenLayers.Strategy.BBOX()
183           ],
184           protocol: new OpenLayers.Protocol.HTTP({
185               url: "<%= url_for :controller => :note, :action => :list, :format => :json %>",
186               format: new OpenLayers.Format.GeoJSON(),
187               callback: noteCallback
188           })
189       });
190       map.noteLayer.events.register("featureselected", map, noteSelected);
191       map.noteLayer.events.register("featureunselected", map, noteUnselected);
192       map.addLayer(map.noteLayer);
193
194       var noteControl = new OpenLayers.Control.SelectFeature(map.noteLayer, {
195           autoActivate: true
196       });
197       map.addControl(noteControl);
198
199       <% if params[:notes] == "yes" -%>
200       map.noteLayer.setVisibility(true);
201       <% end -%>
202
203       $("createnoteanchor").observe("click", addNote);
204
205       map.events.register("zoomend", map, allowNoteReports);
206     <% end %>
207
208     <% unless object_zoom %>
209       <% if bbox %>
210         var bbox = new OpenLayers.Bounds(<%= minlon %>, <%= minlat %>, <%= maxlon %>, <%= maxlat %>);
211
212         setMapExtent(bbox);
213
214         <% if box %>
215           Event.observe(window, "load", function() { addBoxToMap(bbox) });
216         <% end %>
217       <% else %>
218         var centre = new OpenLayers.LonLat(<%= lon %>, <%= lat %>);
219         var zoom = <%= zoom %>;
220
221         <% if params['scale'] and params['scale'].length > 0 then %>
222           zoom = scaleToZoom(<%= params['scale'].to_f() %>);
223         <% end %>
224
225         setMapCenter(centre, zoom);
226       <% end %>
227
228       updateLocation();
229     <% end %>
230
231     <% if !layers.nil? and !layers.empty? %>
232       setMapLayers("<%= layers %>");
233     <% end %>
234
235     <% if marker %>
236       marker = addMarkerToMap(new OpenLayers.LonLat(<%= mlon %>, <%= mlat %>));
237     <% end %>
238
239     <% if object %>
240       var url = "/api/<%= "#{API_VERSION}" %>/<%= object_type %>/<%= object_id %>";
241
242       <% if object_type != "node" %>
243         url += "/full";
244       <% end %>
245
246       Event.observe(window, "load", function() { addObjectToMap(url, <%= object_zoom %>) });
247     <% end %>
248
249     map.events.register("moveend", map, updateLocation);
250     map.events.register("changelayer", map, updateLocation);
251
252     handleResize();
253   }
254
255   function toggleData() {
256     if (map.dataLayer.visibility) {
257       <%= remote_function :url => { :controller => 'browse', :action => 'start' } %>
258     } else if (map.dataLayer.active) {
259       closeSidebar();
260     }
261   }
262
263   function getPosition() {
264     return getMapCenter();
265   }
266
267   function getZoom() {
268     return getMapZoom();
269   }
270
271   function setPosition(lat, lon, zoom, min_lon, min_lat, max_lon, max_lat) {
272     var centre = new OpenLayers.LonLat(lon, lat);
273
274     if (min_lon && min_lat && max_lon && max_lat) {
275       var bbox = new OpenLayers.Bounds(min_lon, min_lat, max_lon, max_lat);
276
277       setMapExtent(bbox);
278     } else {
279       setMapCenter(centre, zoom);
280     }
281
282     if (marker)
283       removeMarkerFromMap(marker);
284
285     marker = addMarkerToMap(centre, getArrowIcon());
286   }
287
288   function updateLocation() {
289     var lonlat = getMapCenter();
290     var zoom = map.getZoom();
291     var layers = getMapLayers();
292     var extents = getMapExtent();
293     var expiry = new Date();
294     var objtype;
295     var objid;
296
297     <% if object %>
298       objtype = "<%= object_type %>";
299       objid = <%= object_id %>;
300     <% end %>
301
302     updatelinks(lonlat.lon, lonlat.lat, zoom, layers, extents.left, extents.bottom, extents.right, extents.top, objtype, objid);
303
304     expiry.setYear(expiry.getFullYear() + 10);
305     document.cookie = "_osm_location=" + lonlat.lon + "|" + lonlat.lat + "|" + zoom + "|" + layers + "; expires=" + expiry.toGMTString();
306   }
307
308   function remoteEditHandler(event) {
309     var extent = getMapExtent();
310     var loaded = false;
311
312     $("linkloader").observe("load", function () { loaded = true; });
313     $("linkloader").src = "http://127.0.0.1:8111/load_and_zoom?left=" + extent.left + "&top=" + extent.top + "&right=" + extent.right + "&bottom=" + extent.bottom;
314
315     setTimeout(function () {
316       if (!loaded) alert("<%= escape_javascript(t('site.index.remote_failed')) %>");
317     }, 1000);
318
319     event.stop();
320   }
321
322   function installEditHandler() {
323     $("remoteanchor").observe("click", remoteEditHandler);
324
325     <% if preferred_editor == "remote" %>
326       $("editanchor").observe("click", remoteEditHandler);
327
328       <% if params[:action] == "edit" %>
329         remoteEditHandler();
330       <% end %>
331     <% end %>
332   }
333
334   function noteCallback(scope, response) {
335     for (var f = 0; f < response.features.length; f++) {
336       var feature = response.features[f];
337     }
338   }
339
340   function noteSelected(o) {
341     var feature = o.feature;
342     var location = feature.geometry.getBounds().getCenterLonLat();
343
344     feature.popup = new OpenLayers.Popup.FramedCloud(feature.attributes.id,
345                                                      location, null,
346                                                      "<p>" + feature.attributes.id + "</p>",
347                                                      null, true);
348
349     map.addPopup(feature.popup);
350 //    feature.popup.show();
351   }
352
353   function noteUnselected(o) {
354     var feature = o.feature;
355
356     map.removePopup(feature.popup);
357     delete feature.popup;
358   }
359
360   function addNote() {
361     map.noteLayer.setVisibility(true);
362     map.noteLayer.addNote(map.getCenter());
363   }
364
365   function allowNoteReports() { 
366     if (map.getZoom() > 11) {
367       $("createnoteanchor").style.visibility = "visible";
368     } else {
369       $("createnoteanchor").style.visibility = "hidden";
370     }
371   }
372
373   document.observe("dom:loaded", mapInit);
374   document.observe("dom:loaded", installEditHandler);
375   document.observe("dom:loaded", handleResize);
376
377   Event.observe(window, "resize", function() {
378     var centre = map.getCenter();
379     var zoom = map.getZoom();
380
381     handleResize();
382
383     map.setCenter(centre, zoom);
384   });
385
386   <% if params['action'] == 'export' %>
387   <%= remote_function :url => { :controller => 'export', :action => 'start' } %>
388   <% end %>
389 </script>