Examples of WMSCGeoResourceImpl


Examples of org.locationtech.udig.catalog.internal.wmsc.WMSCGeoResourceImpl

           // got a hit!
           WMSCServiceImpl wms = (WMSCServiceImpl) handle;
           return wms.getConnectionParams();
       }
       else if (handle instanceof WMSCGeoResourceImpl ){
           WMSCGeoResourceImpl layer = (WMSCGeoResourceImpl) handle;
           WMSCServiceImpl wms;
           try {
               wms = layer.service( new NullProgressMonitor());
               return wms.getConnectionParams();
           } catch (IOException e) {
               checkedURL( layer.getIdentifier() );
           }                   
       }
       else if( handle.canResolve( TiledWebMapServer.class )){
           // must be some kind of handle from a search!
           return createParams( handle.getIdentifier() );
View Full Code Here

Examples of org.locationtech.udig.catalog.internal.wmsc.WMSCGeoResourceImpl

public class WMSCPreloadTilesOp implements IOp {

  public void op(Display display, Object target, IProgressMonitor monitor)
      throws Exception {
    WMSCGeoResourceImpl wmscResource = (WMSCGeoResourceImpl) target;
    TileSet tileSet = wmscResource.getTileSet();
    WMSCTileUtils.preloadAllTilesOnDisk(tileSet);

  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.