Ignore:
Timestamp:
2009-01-28T21:44:10+01:00 (16 years ago)
Author:
pieren
Message:

add municipality bbox in grab and cache

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/DownloadWMSTask.java

    r13382 r13426  
    2929        try {
    3030            if (grabber.getWmsInterface().retrieveInterface(wmsLayer)) {
    31                 if (wmsLayer.isRaster() && wmsLayer.images.isEmpty())
    32                     wmsLayer.setRasterBounds(bounds);
    33                 if (CacheControl.cacheEnabled && wmsLayer.images.isEmpty()) {
    34                     // images loaded from cache
    35                     if (wmsLayer.getCacheControl().loadCacheIfExist()) {
    36                         Main.map.mapView.repaint();
    37                         return;
     31                if (wmsLayer.images.isEmpty()) {
     32                    // first time we grab an image for this layer
     33                    if (CacheControl.cacheEnabled) {
     34                        if (wmsLayer.getCacheControl().loadCacheIfExist()) {
     35                            Main.map.mapView.repaint();
     36                            return;
     37                        }
    3838                    }
     39                    if (wmsLayer.isRaster())
     40                        // set raster image commune bounding box based on current view (before adjustment)
     41                        wmsLayer.setRasterBounds(bounds);
     42                    else
     43                        // set vectorized commune bounding box by opening the standard web window
     44                        wmsLayer.setCommuneBBox( grabber.getWmsInterface().retrieveCommuneBBox());
    3945                }
    4046                // grab new images from wms server into active layer
Note: See TracChangeset for help on using the changeset viewer.