X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/bdee581d440ba0d88e7e07355ffa3175ea9691d3..dd3b577bd5bbe4f9d9d1cac8e0f328a16b75f7f5:/app/views/changeset/_map.html.erb?ds=sidebyside
diff --git a/app/views/changeset/_map.html.erb b/app/views/changeset/_map.html.erb
index 6d7aa96c0..88dd53c99 100644
--- a/app/views/changeset/_map.html.erb
+++ b/app/views/changeset/_map.html.erb
@@ -1,5 +1,4 @@
-<%= javascript_include_tag '/openlayers/OpenLayers.js' %>
-<%= javascript_include_tag '/openlayers/OpenStreetMap.js' %>
+<%= javascript_include_tag 'openlayers.js' %>
<%= javascript_include_tag 'map.js' %>
@@ -14,7 +13,11 @@
var feature = vectors.getFeatureByFid(id);
var bounds = feature.geometry.getBounds();
- if ( highlight ) vectors.removeFeatures(highlight);
+ if (bounds.containsBounds(map.getExtent())) {
+ bounds = map.getExtent().scale(1.1);
+ }
+
+ if (highlight) vectors.removeFeatures(highlight);
highlight = new OpenLayers.Feature.Vector(bounds.toGeometry(), {}, {
strokeWidth: 2,
@@ -25,13 +28,13 @@
vectors.addFeatures(highlight);
- $("tr-changeset-" + id).addClassName("selected");
+ $("#tr-changeset-" + id).addClass("selected");
}
function unHighlightChangeset(id) {
vectors.removeFeatures(highlight);
- $("tr-changeset-" + id).removeClassName("selected");
+ $("#tr-changeset-" + id).removeClass("selected");
}
function init() {
@@ -46,14 +49,18 @@
var bounds = new OpenLayers.Bounds();
<% @edits.each do |edit| %>
- var minlon = <%= edit.min_lon / GeoRecord::SCALE.to_f %>;
- var minlat = <%= edit.min_lat / GeoRecord::SCALE.to_f %>;
- var maxlon = <%= edit.max_lon / GeoRecord::SCALE.to_f %>;
- var maxlat = <%= edit.max_lat / GeoRecord::SCALE.to_f %>;
+ <% if edit.has_valid_bbox? %>
+ <% bbox = edit.bbox.to_unscaled %>
+ var minlon = <%= bbox.min_lon %>;
+ var minlat = <%= bbox.min_lat %>;
+ var maxlon = <%= bbox.max_lon %>;
+ var maxlat = <%= bbox.max_lat %>;
var bbox = new OpenLayers.Bounds(minlon, minlat, maxlon, maxlat);
bounds.extend(bbox);
- box = addBoxToMap(bbox, "<%= edit.id %>", true);
+
+ addBoxToMap(bbox, "<%= edit.id %>", true);
+ <% end %>
<% end %>
vectors.events.on({
@@ -73,9 +80,9 @@
selectControl.activate();
<% if ! @bbox.nil? %>
- setMapExtent(new OpenLayers.Bounds(<%= @bbox %>));
+ map.zoomToExtent(proj(new OpenLayers.Bounds(<%= @bbox %>)));
<% else %>
- setMapExtent(bounds);
+ map.zoomToExtent(proj(bounds));
<% end %>
}