Package org.geotools.styling

Examples of org.geotools.styling.SLDInlineFeatureParser


   * @param child
   * @param layer
   */
  private void parseInlineFeature(Node root, UserLayer layer) {
    try {
      SLDInlineFeatureParser inparser = new SLDInlineFeatureParser(root);
      layer.setInlineFeatureDatastore(inparser.dataStore);
      layer.setInlineFeatureType(inparser.featureType);
    } catch (Exception e) {
      throw (IllegalArgumentException) new IllegalArgumentException()
          .initCause(e);
View Full Code Here

TOP

Related Classes of org.geotools.styling.SLDInlineFeatureParser

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.