X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/6b4803d87fc957d0a779ebedc39e8499af1b7733..9b446e75cbdbc20e239a7171b3f9ccab09927a28:/app/views/site/index.rhtml
diff --git a/app/views/site/index.rhtml b/app/views/site/index.rhtml
index 78623603a..d5c7b9e03 100644
--- a/app/views/site/index.rhtml
+++ b/app/views/site/index.rhtml
@@ -1,24 +1,36 @@
-
-
-
- <%= start_form_tag :controller => 'site', :action => 'search' %>
- <%= text_field 'query', 'query'%>
- <%= submit_tag 'Search' %>
- <%= end_form_tag %>
-
-
-
-
+<%= render :partial => 'search' %>
+
+<% if params['mlon'] and params['mlat'] %>
+<% marker = true %>
+<% mlon = params['mlon'] %>
+<% mlat = params['mlat'] %>
+<% lon = params['mlon'] %>
+<% lat = params['mlat'] %>
+<% zoom = params['zoom'] || '12' %>
+
+<% elsif @user and params['lon'].nil? and params['lat'].nil? %>
+<% lon = @user.home_lon %>
+<% lat = @user.home_lat %>
+<% zoom = '10' %>
+<%else%>
<% lon = params['lon'] || '-0.1' %>
<% lat = params['lat'] || '51.5' %>
<% zoom = params['zoom'] || '4' %>
+<% end %>
+
+