/* * This is part of Geomajas, a GIS framework, http://www.geomajas.org/. * * Copyright 2008-2015 Geosparc nv, http://www.geosparc.com/, Belgium. * * The program is available in open source according to the GNU Affero * General Public License. All contributions in this program are covered * by the Geomajas Contributors License Agreement. For full licensing * details, see LICENSE.txt in the project root. */ package org.geomajas.gwt.example.client.sample.controller; import com.google.gwt.core.client.GWT; import org.geomajas.gwt.client.util.WidgetLayout; import org.geomajas.gwt.example.base.SamplePanel; import org.geomajas.gwt.example.base.SamplePanelFactory; import org.geomajas.gwt.client.controller.MeasureDistanceController; import org.geomajas.gwt.client.widget.MapWidget; import org.geomajas.gwt.client.widget.Toolbar; import com.smartgwt.client.widgets.Canvas; import com.smartgwt.client.widgets.Label; import com.smartgwt.client.widgets.layout.VLayout; import org.geomajas.gwt.example.client.sample.i18n.SampleMessages; /** * <p> * Sample that shows how to use the fall-back controller on a map. It changes the default fall-back controller to the * selection controller. * </p> * * @author Pieter De Graef */ public class FallbackControllerSample extends SamplePanel { private static final SampleMessages MESSAGES = GWT.create(SampleMessages.class); public static final String TITLE = "FallbackController"; public static final SamplePanelFactory FACTORY = new SamplePanelFactory() { public SamplePanel createPanel() { return new FallbackControllerSample(); } }; public Canvas getViewPanel() { VLayout layout = new VLayout(); layout.setWidth100(); layout.setHeight100(); VLayout mapLayout = new VLayout(); mapLayout.setShowEdges(true); mapLayout.setHeight("60%"); // Map with ID wmsMap is defined in the XML configuration. (mapWms.xml) final MapWidget map = new MapWidget("mapToolbarSecurity", "gwtExample"); final Toolbar toolbar = new Toolbar(map, WidgetLayout.toolbarLargeButtonSize); // Set a different fall-back controller: map.setFallbackController(new MeasureDistanceController(map)); mapLayout.addMember(toolbar); mapLayout.addMember(map); VLayout labelLayout = new VLayout(); Label help = new Label(); help.setContents(MESSAGES.fallbackControllerExplanation()); labelLayout.addMember(help); layout.addMember(mapLayout); layout.addMember(labelLayout); return layout; } public String getDescription() { return MESSAGES.fallbackControllerDescription(); } public String[] getConfigurationFiles() { return new String[] { "classpath:org/geomajas/gwt/example/context/mapToolbarSecurity.xml", "classpath:org/geomajas/gwt/example/base/layerWmsBluemarble.xml" }; } public String ensureUserLoggedIn() { return "luc"; } }