Package com.gi.engine.carto

Examples of com.gi.engine.carto.FeatureLayer


        for (int i = 0, count = layerIds.size(); i < count; i++) {
          int layerId = Integer.valueOf(layerIds.get(i));
          Layer layer = map.getLayer(i);
          if (layer != null && layer instanceof FeatureLayer) {
            FeatureLayer featureLayer = (FeatureLayer) layer;
            try {
              QueryParam queryParam = new QueryParam();
              queryParam.setWhere(where);
              FeatureCollection<? extends FeatureType, ? extends Feature> layerFeatureCollection = featureLayer
                  .query(queryParam);
              if (layerFeatureCollection != null
                  && !layerFeatureCollection.isEmpty()) {
                for (FeatureIterator<? extends Feature> itr = layerFeatureCollection
                    .features(); itr.hasNext();) {
View Full Code Here

TOP

Related Classes of com.gi.engine.carto.FeatureLayer

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.