Examples of TileLodInfo


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
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.