Package org.geotools.filter.visitor

Examples of org.geotools.filter.visitor.FixBBOXFilterVisitor


            }
        }
        // we are going to assume that to assume that we don't need to clip or
        // anything; and just return the dataCRS
        // Rewrite request if we have a maxbox
        FixBBOXFilterVisitor visitor = new FixBBOXFilterVisitor(null);
        serverFilter = (Filter) serverFilter.accept(visitor, null );
        //Filters.accept(serverFilter, visitor);
        return dataCRS;
    }
View Full Code Here


            maxbbox = fsd.getLatLongBoundingBox();
        }
       
        // Rewrite request if we have a maxbox
        if (maxbbox != null) {
            FixBBOXFilterVisitor clipVisitor = new FixBBOXFilterVisitor(ReferencedEnvelope.reference(maxbbox));
            serverFilter = (Filter) serverFilter.accept(clipVisitor, null );
//            WFSBBoxFilterVisitor clipVisitor = new WFSBBoxFilterVisitor(maxbbox);
//            Filters.accept(serverFilter, clipVisitor);
        } else { // give up an request everything
            WFS_1_0_0_DataStore.LOGGER.log(Level.FINE,
View Full Code Here

TOP

Related Classes of org.geotools.filter.visitor.FixBBOXFilterVisitor

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.