Package org.neo4j.gis.spatial.indexfilter

Examples of org.neo4j.gis.spatial.indexfilter.DynamicIndexReader


  public LayerIndexReader getIndex() {
    if (parent.index instanceof LayerTreeIndexReader) {
      String query = getQuery();
      if (query.startsWith("{")) {
        // Make a standard JSON based dynamic layer
        return new DynamicIndexReader((LayerTreeIndexReader) parent.index, query);
      } else {
        // Make a CQL based dynamic layer
        try {
          return new CQLIndexReader((LayerTreeIndexReader) parent.index, this, query);
        } catch (CQLException e) {
View Full Code Here

TOP

Related Classes of org.neo4j.gis.spatial.indexfilter.DynamicIndexReader

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.