Package org.geoforge.worldwindogc.factory

Examples of org.geoforge.worldwindogc.factory.InfoChildWms


      // !!!!!!!!!!
      //Set<WMSLayerStyle> setStyleChild = capChild.getStyles();
           
      //if (setStyleChild == null || setStyleChild.isEmpty())
      {
         InfoChildWms lioLayerInfo = InfoChildWms.s_create(capWms, capChild, null);
         //_tempoDumpInfos_(lioLayerInfo);
        
         AVList lstParamsNew = lioLayerInfo.getParams();
        
         Object objComponent = FactoryChildWms.s_create(capWms, lstParamsNew);
        
         // current limitation
         // ATTN: below: same "if" in use
         // in progress, should then return GfrEmlWMSBasicElevationModel
         if (objComponent == null) // elevation model
         {
            this._strError = "This WMS server contains at least one layer of type Elevation Layer:";
            this._strError += "\n" + ". Layer's title:" + lioLayerInfo.getDisplayName();
            String strNameLayer = lioLayerInfo.getLayerNames();
           
            if (strNameLayer!=null && strNameLayer.length()>0)
               this._strError += "\n" + ". Layer's name:" + strNameLayer;
           
            this._strError += "\n\n" + "Sorry, Elevation Layers not supported yet!";
View Full Code Here

TOP

Related Classes of org.geoforge.worldwindogc.factory.InfoChildWms

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.