X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b2b6892a4553eeaa8d601737dee440eba0c6d6a6..4d1633585feddb414a967f0df83be5c63cc0ffad:/app/views/site/index.rhtml
diff --git a/app/views/site/index.rhtml b/app/views/site/index.rhtml
index fb5327b81..c182a924d 100644
--- a/app/views/site/index.rhtml
+++ b/app/views/site/index.rhtml
@@ -1,76 +1,143 @@
-
-
-
+<%= render :partial => 'search' %>
+
+<% if params['mlon'] and params['mlat'] %>
+<% marker = true %>
+<% mlon = params['mlon'] %>
+<% mlat = params['mlat'] %>
+<% end %>
+
+<% if params['lon'] and params['lat'] %>
+<% lon = params['lon'] %>
+<% lat = params['lat'] %>
+<% zoom = params['zoom'] || '4' %>
+<% elsif params['mlon'] and params['mlat'] %>
+<% lon = params['mlon'] %>
+<% lat = params['mlat'] %>
+<% zoom = params['zoom'] || '12' %>
+<% elsif @user %>
+<% lon = @user.home_lon %>
+<% lat = @user.home_lat %>
+<% zoom = '10' %>
+<% else %>
+<% lon = '-0.1' %>
+<% lat = '51.5' %>
+<% zoom = params['zoom'] || '4' %>
+<% end %>
+
+
+<%= javascript_include_tag 'map.js' %>
+
+<% unless @user %>
+
+<% end %>
-
-
+ <% unless @user %>
+ if ( window.location.hostname == "www.openstreetmap.org" ) {
+ mappam.register( map, '10011756636067178496', '1');
+ } else if( window.location.hostname == "openstreetmap.org" ) {
+ mappam.register( map, '6738410720121976832', '1');
+ }
+ <% end %>
+ document.getElementById('map_OpenLayers_ViewPort').style.position = 'absolute';
+ if ( ie ) {
+ handleResize();
+ }
+ }
-
-<% unless @user %>
-
- We're trialing adverts to support the project. Login and they go away.
-
- <% end %>
+ updatelinks(lonlat.lon, lonlat.lat, zoom);
+ }
-
+ window.onload = init;
+// -->
+