X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/701325e9ef6720a16646c7218010e33b5c58d544..3d5a613c5ed278192d91880674613449780af70a:/app/views/browse/_map.html.erb
diff --git a/app/views/browse/_map.html.erb b/app/views/browse/_map.html.erb
index 333fc9f30..2c29a0d00 100644
--- a/app/views/browse/_map.html.erb
+++ b/app/views/browse/_map.html.erb
@@ -11,12 +11,12 @@
<%= t 'browse.map.loading' %>
<%= link_to(t("browse.map.larger.area"), { :controller => :site, :action => :index, :box => "yes" }, { :id => "area_larger_map", :class => "geolink bbox" }) %>
- <%= link_to(t("browse.map.edit.area"), { :controller => :site, :action => :edit }, { :id => "area_edit", :class => "geolink bbox" }) %>
+ <%= link_to(h(t("browse.map.edit.area")) + content_tag(:span, "â¾", :class => "menuicon"), { :controller => :site, :action => :edit }, { :id => "area_edit", :class => "geolink bbox" }) %>
<% unless map.instance_of? Changeset %>
- <%= link_to("", { :controller => :site, :action => :index }, { :id => "object_larger_map", :class => "geolink object" }) %>
+ <%= link_to(t("browse.map.larger." + map.class.to_s.downcase), { :controller => :site, :action => :index }, { :id => "object_larger_map", :class => "geolink object" }) %>
- <%= link_to("", { :controller => :site, :action => :edit }, { :id => "object_edit", :class => "geolink object" }) %>
+ <%= link_to(h(t("browse.map.edit." + map.class.to_s.downcase)) + content_tag(:span, "â¾", :class => "menuicon"), { :controller => :site, :action => :edit }, { :id => "object_edit", :class => "geolink object" }) %>
<% end %>
<% else %>
<%= t 'browse.map.deleted' %>
@@ -79,7 +79,7 @@
var bbox = new OpenLayers.Bounds(minlon, minlat, maxlon, maxlat);
var centre = bbox.getCenterLonLat();
- map.setExtent(proj(bbox));
+ map.zoomToExtent(proj(bbox));
addBoxToMap(bbox);
$("#loading").hide();
@@ -110,6 +110,9 @@
url += "/" + previous_version;
}
+ $("#object_larger_map").hide();
+ $("#object_edit").hide();
+
addObjectToMap(url, true, function(extent) {
$("#loading").hide();
$("#browse_map .geolink").show();
@@ -129,7 +132,6 @@
});
<% end -%>
- <% unless map.instance_of? Changeset -%>
$("#remote_object_edit").click(function (event) {
return remoteEditHandler(event, extent, "<%= map.class.to_s.downcase + map.id.to_s %>");
});
@@ -140,9 +142,8 @@
});
<% end -%>
- $("#object_larger_map").html("<%=j t('browse.map.larger.' + map.class.to_s.downcase) %>");
- $("#object_edit").html("<%=j t('browse.map.edit.' + map.class.to_s.downcase) %>");
- <% end -%>
+ $("#object_larger_map").show();
+ $("#object_edit").show();
updatelinks(centre.lon, centre.lat, 16, null, extent.left, extent.bottom, extent.right, extent.top, "<%= map.class.to_s.downcase %>", <%= map.id %>);
} else {
@@ -151,8 +152,8 @@
});
<% end -%>
- createMenu("area_edit", "area_edit_menu", 1000, "right");
- createMenu("object_edit", "object_edit_menu", 1000, "right");
+ createMenu("area_edit", "area_edit_menu", "right");
+ createMenu("object_edit", "object_edit_menu", "right");
}
window.onload = init;