Ignore:
Timestamp:
2009-09-13T13:12:14+02:00 (15 years ago)
Author:
stoecker
Message:

see #3016 - patch by xeen - fixes some zooming issues

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/projection/UTM.java

    r2017 r2114  
    342342    public int getzone()
    343343    {
    344       return 33;
     344        return 33;
    345345    }
    346346
     
    356356    {
    357357        return new Bounds(
    358         new LatLon(-85.0, UTMCentralMeridianDeg(getzone())-5.0),
    359         new LatLon(85.0, UTMCentralMeridianDeg(getzone())+5.0));
     358                new LatLon(-85.0, UTMCentralMeridianDeg(getzone())-5.0),
     359                new LatLon(85.0, UTMCentralMeridianDeg(getzone())+5.0));
     360    }
     361
     362    public double getDefaultZoomInPPD() {
     363        // this will set the map scaler to about 1000 m
     364        return 10;
    360365    }
    361366}
Note: See TracChangeset for help on using the changeset viewer.