Package org.geomajas.plugin.printing.component.impl

Examples of org.geomajas.plugin.printing.component.impl.RasterLayerComponentImpl$RasterImageDownloadCallable


        RasterLayerComponentInfo rasterInfo = new RasterLayerComponentInfo();
        rasterInfo.setLayerId(info.getServerLayerId());
        rasterInfo.setVisible(true);
        rasterInfo.setStyle(((ClientRasterLayerInfo) info).getStyle());
        try {
          RasterLayerComponentImpl comp = (RasterLayerComponentImpl) printDtoConverterService
              .toInternal(rasterInfo);
          comp.setLayerId(info.getServerLayerId());
          comp.setVisible(true);
          layers.add(comp);
        } catch (PrintingException e) {
          // should never fail
          log.error("unexpected exception while adding layers to map" , e);
        }
View Full Code Here

TOP

Related Classes of org.geomajas.plugin.printing.component.impl.RasterLayerComponentImpl$RasterImageDownloadCallable

Copyright © 2018 www.massapicom. 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.