Changeset 387
- Timestamp:
- 09/04/08 19:45:47 (4 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/geowebcache/src/main/java/org/geowebcache/layer/GridCalculator.java
r386 r387 34 34 // Note that they can be modified by external code -> not 100% safe! 35 35 private final static double[] RESOLUTIONS4326 = 36 GridCalculator.getResolutionArray(180.0, TILEPIXELS, 26);36 GridCalculator.getResolutionArray(180.0, TILEPIXELS, 31); 37 37 38 38 private final static double[] RESOLUTIONS900913 = 39 GridCalculator.getResolutionArray(20037508.34*2,TILEPIXELS, 26);39 GridCalculator.getResolutionArray(20037508.34*2,TILEPIXELS, 31); 40 40 41 41 // The following are the width of the actual layer … … 78 78 if(grid.resolutions != null) { 79 79 this.resolutions = grid.resolutions; 80 this.zoomStop = resolutions.length +1;80 this.zoomStop = resolutions.length - 1; 81 81 } 82 82
