Ignore:
Timestamp:
2006-04-03T22:25:02+02:00 (18 years ago)
Author:
imi
Message:
  • fixed bug in osm import (now reject id=0)
  • added WMS server layer (not finished)
  • added save state for dialogs
Location:
src/org/openstreetmap/josm/data/coor
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/data/coor/EastNorth.java

    r72 r79  
    2424        @Override
    2525        public String toString() {
    26                 return "(EastNorth e="+x+", n="+y+")";
     26                return "EastNorth[e="+x+", n="+y+"]";
    2727        }
    2828}
  • src/org/openstreetmap/josm/data/coor/LatLon.java

    r71 r79  
    4141                        lon() < -Projection.MAX_LON || lon() > Projection.MAX_LON;
    4242        }
     43
     44    @Override
     45    public String toString() {
     46        return "LatLon[lat="+lat()+",lon="+lon()+"]";
     47    }
    4348}
Note: See TracChangeset for help on using the changeset viewer.