Package org.geoserver.w3ds.types

Examples of org.geoserver.w3ds.types.TileSet


            e.printStackTrace();
          }
        }
        if (x3dInfoExtract.isTiled()) {
          try {
            TileSet tileSet = x3dInfoExtract.getTileSet();
            if (tileSet != null) {
              handleTileSet(tileSet);
            }
          } catch (Exception e) {
            e.printStackTrace();
View Full Code Here


  public TileSet getTileSet() throws ParserConfigurationException,
      SAXException, IOException {
    if (this.info.containsKey("x3d.tileSet")) {
      String identifier = this.info.get("x3d.tileSet").toString();
      if (identifier != null) {
        TileSet tileSet = tileSetsParser.getTileSet(identifier);
        if (tileSet != null) {
          return tileSet;
        }
      }
    }
View Full Code Here

    }

    public void startElement(String uri, String localName, String qName,
        Attributes attributes) throws SAXException {
      if (qName.equalsIgnoreCase("TileSet")) {
        this.tileSet = new TileSet();
        n_tileSets++;
      } else if (qName.equalsIgnoreCase("Identifier")) {
        if (this.finIdentifier) {
          throw new SAXException("Tag " + qName
              + " defined multiple times.");
View Full Code Here

TOP

Related Classes of org.geoserver.w3ds.types.TileSet

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.