]> git.openstreetmap.org Git - rails.git/commitdiff
Make home location setting map default to the whole world
authorHarry Wood <git@harrywood.co.uk>
Sat, 2 Apr 2011 17:53:37 +0000 (18:53 +0100)
committerTom Hughes <tom@compton.nu>
Sun, 3 Apr 2011 12:46:18 +0000 (13:46 +0100)
Defaulting to western europe doesn't seem very reasonable these
days as we have users all over the world now.

app/views/user/_map.html.erb

index 7c29526cf7d7a24d8da3acf1ee93992abdc217b6..55f23cd0dc8b687b8436f2463ab99de66c57254c 100644 (file)
@@ -2,9 +2,9 @@
 <% nearest = @user.nearby - friends %>
 
 <% if @user.home_lat.nil? or @user.home_lon.nil? %>
-  <% lon = h(params['lon'] || '-0.1') %>
-  <% lat = h(params['lat'] || '51.5') %>
-  <% zoom = h(params['zoom'] || '4') %> 
+  <% lon = h(params['lon'] || '0') %>
+  <% lat = h(params['lat'] || '20') %>
+  <% zoom = h(params['zoom'] || '1') %> 
 <% else %>
   <% marker = true %>
   <% mlon = @user.home_lon %>