Index: /applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/MapRectangleImpl.java
===================================================================
--- /applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/MapRectangleImpl.java	(revision 26667)
+++ /applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/MapRectangleImpl.java	(revision 26668)
@@ -10,5 +10,4 @@
 
 import org.openstreetmap.gui.jmapviewer.interfaces.MapRectangle;
-import org.openstreetmap.josm.data.Bounds;
 
 /**
@@ -23,11 +22,11 @@
     private Stroke stroke;
 
-    public MapRectangleImpl(Bounds bounds) {
-        this(bounds, Color.BLUE, new BasicStroke(2));
+    public MapRectangleImpl(Coordinate topLeft, Coordinate bottomRight) {
+        this(topLeft, bottomRight, Color.BLUE, new BasicStroke(2));
     }
 
-    public MapRectangleImpl(Bounds bounds, Color color, Stroke stroke) {
-        this.topLeft = new Coordinate(bounds.getMax().lat(), bounds.getMin().lon());
-        this.bottomRight = new Coordinate(bounds.getMin().lat(), bounds.getMax().lon());
+    public MapRectangleImpl(Coordinate topLeft, Coordinate bottomRight, Color color, Stroke stroke) {
+        this.topLeft = topLeft;
+        this.bottomRight = bottomRight;
         this.color = color;
         this.stroke = stroke;
