Changeset 386
- Timestamp:
- 09/04/08 19:39:45 (4 months ago)
- Location:
- trunk/geowebcache/src/main/java/org/geowebcache/layer
- Files:
-
- 2 modified
-
Grid.java (modified) (1 diff)
-
GridCalculator.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/geowebcache/src/main/java/org/geowebcache/layer/Grid.java
r348 r386 39 39 private volatile int zoomStart = 0; 40 40 41 private volatile int zoomStop = 25;41 private volatile int zoomStop = 30; 42 42 43 43 public Grid(SRS srs, BBOX bounds, BBOX gridBounds, double[] resolutions) { -
trunk/geowebcache/src/main/java/org/geowebcache/layer/GridCalculator.java
r367 r386 69 69 public GridCalculator(Grid grid) throws GeoWebCacheException { 70 70 71 //TODO this is messed up, ignoring Grid object 71 72 this.grid = grid; 72 73 this.zoomStart = 0; 73 this.zoomStop = 25;74 this.zoomStop = 30; 74 75 //this.metaWidth = metaWidth; 75 76 //this.metaHeight = metaHeight; 76 77 77 this.resolutions = grid.resolutions; 78 if(grid.resolutions != null) { 79 this.resolutions = grid.resolutions; 80 this.zoomStop = resolutions.length + 1; 81 } 78 82 79 83 //BBOX layerBounds = grid.bounds;
