Package com.gi.engine.server.service

Examples of com.gi.engine.server.service.TileLodInfo


        jListLevelsModel.removeAllElements();
        Element eLODInfos = eTileCacheInfo.element("LODInfos");
        for (Iterator iLODInfos = eLODInfos.elementIterator(); iLODInfos
            .hasNext();) {
          Element eLODInfo = (Element) iLODInfos.next();
          TileLodInfo tileLodInfo = new TileLodInfo();
          tileLodInfo.setLevel(Integer.valueOf(eLODInfo
              .elementText("LevelID")));
          tileLodInfo.setScale(Double.valueOf(eLODInfo
              .elementText("Scale")));
          tileLodInfo.setResolution(Double.valueOf(eLODInfo
              .elementText("Resolution")));

          LodItem item = new LodItem();
          item.setTileLodInfo(tileLodInfo);
          jListLevelsModel.addElement(item);
View Full Code Here

TOP

Related Classes of com.gi.engine.server.service.TileLodInfo

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.