Package org.geoserver.wms.featureinfo

Examples of org.geoserver.wms.featureinfo.LayerIdentifier.identify()


        List<LayerIdentifier> identifiers = GeoServerExtensions.extensions(LayerIdentifier.class);
        for (int i = 0; i < requestedLayers.size(); i++) {
            final MapLayerInfo layer = requestedLayers.get(i);

            LayerIdentifier identifier = getLayerIdentifier(layer, identifiers);
            List<FeatureCollection> identifiedCollections = identifier.identify(requestParams,
                    maxFeatures);
            if (identifiedCollections != null) {
                for (FeatureCollection identifierCollection : identifiedCollections) {
                    FeatureCollection fc = selectProperties(requestParams, identifierCollection);
                    maxFeatures = addToResults(fc, results, layer, request, maxFeatures);
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.