Package org.geomajas.puregwt.client.map.feature.FeatureSearch

Examples of org.geomajas.puregwt.client.map.feature.FeatureSearch.SearchType


   */
  private class SelectionRectangleController extends AbstractRectangleController {

    protected void execute(Bbox worldBounds) {
      List<Layer<?>> layers = new ArrayList<Layer<?>>();
      SearchType searchType = SearchType.SEARCH_ALL_LAYERS;
      if (selectionType.equals(SelectionType.SELECTED_LAYER)) {
        if (mapPresenter.getLayersModel().getSelectedLayer() == null) {
          return;
        }
        layers.add(mapPresenter.getLayersModel().getSelectedLayer());
View Full Code Here

TOP

Related Classes of org.geomajas.puregwt.client.map.feature.FeatureSearch.SearchType

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.