All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.geomajas.gwt2.client.map.layer.AbstractLayer Maven / Gradle / Ivy

/*
 * 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.gwt2.client.map.layer;

import org.geomajas.geometry.Bbox;
import org.geomajas.gwt2.client.event.LayerDeselectedEvent;
import org.geomajas.gwt2.client.event.LayerHideEvent;
import org.geomajas.gwt2.client.event.LayerRefreshedEvent;
import org.geomajas.gwt2.client.event.LayerSelectedEvent;
import org.geomajas.gwt2.client.event.LayerShowEvent;
import org.geomajas.gwt2.client.event.LayerVisibilityMarkedEvent;
import org.geomajas.gwt2.client.event.ViewPortChangedEvent;
import org.geomajas.gwt2.client.event.ViewPortChangedHandler;
import org.geomajas.gwt2.client.map.MapEventBus;
import org.geomajas.gwt2.client.map.ViewPort;

import com.google.web.bindery.event.shared.HandlerRegistration;

/**
 * Abstraction of the basic layer interface. Specific layer implementations can use this as a base.
 *
 * @author Pieter De Graef
 */
public abstract class AbstractLayer implements Layer {

	protected final String id;

	protected ViewPort viewPort;

	protected MapEventBus eventBus;

	protected boolean selected;

	protected boolean markedAsVisible;

	protected boolean visibleAtPreviousScale;

	protected String title;

	private HandlerRegistration visibilityReg;
	
	private Bbox maxBounds = Bbox.ALL;

	// ------------------------------------------------------------------------
	// Constructors:
	// ------------------------------------------------------------------------

	/**
	 * Create a new layer that belongs to the given map model, using the given meta-data.
	 *
	 * @param id The unique ID for this layer. This constructor will also use the "id" value for the title. It's best
	 *           to specifically set the title at a later time.
	 */
	public AbstractLayer(String id) {
		this.id = id;
		this.title = id;
		markedAsVisible = true;
	}

	// ------------------------------------------------------------------------
	// Layer implementation:
	// ------------------------------------------------------------------------

	@Override
	public String getId() {
		return id;
	}

	@Override
	public String getTitle() {
		return title;
	}

	@Override
	public void setSelected(boolean selected) {
		this.selected = selected;
		if (eventBus != null) {
			if (selected) {
				eventBus.fireEvent(new LayerSelectedEvent(this));
			} else {
				eventBus.fireEvent(new LayerDeselectedEvent(this));
			}
		}
	}

	@Override
	public boolean isSelected() {
		return selected;
	}

	@Override
	public void setMarkedAsVisible(boolean markedAsVisible) {
		this.markedAsVisible = markedAsVisible;
		if (eventBus != null) {
			eventBus.fireEvent(new LayerVisibilityMarkedEvent(this));
			if (isShowing()) {
				visibleAtPreviousScale = true;
				eventBus.fireEvent(new LayerShowEvent(this));
			} else {
				visibleAtPreviousScale = false;
				eventBus.fireEvent(new LayerHideEvent(this));
			}
		}
	}

	@Override
	public boolean isMarkedAsVisible() {
		return markedAsVisible;
	}

	@Override
	public boolean isShowing() {
		return markedAsVisible;
	}

	@Override
	public Bbox getMaxBounds() {
		return maxBounds;
	}

	@Override
	public void setMaxBounds(Bbox maxBounds) {
		this.maxBounds = maxBounds;
	}

	@Override
	public void refresh() {
		if (eventBus != null) {
			eventBus.fireEvent(new LayerRefreshedEvent(this));
		}
	}

	/**
	 * Check if current viewPort resolution is between the minimum (inclusive) and
	 * the maximum scale (exclusive) of the layer.
	 *  Inclusive/exclusive follows SLD convention: exclusive minResolution, inclusive maxResolution.
	 *
	 * @param viewPort the viewPort
	 * @return whether the layer is visible in the provided viewPort resolution
	 */
	public boolean isVisibleAtViewPortResolution(ViewPort viewPort) {
		if (viewPort.getResolution() > getMinResolution()
				&& viewPort.getResolution() <= getMaxResolution()) {
			return true;
		}
		return false;
	}

	// ------------------------------------------------------------------------
	// Protected methods:
	// ------------------------------------------------------------------------

	protected void setViewPort(ViewPort viewPort) {
		this.viewPort = viewPort;
	}

	protected void setEventBus(MapEventBus eventBus) {
		this.eventBus = eventBus;
		if (visibilityReg != null) {
			visibilityReg.removeHandler();
		}
		visibilityReg = eventBus.addViewPortChangedHandler(new LayerScaleVisibilityHandler());
	}

	// ------------------------------------------------------------------------
	// Protected classes:
	// ------------------------------------------------------------------------

	/**
	 * Every time the scale on the map changes, this handler checks to see if the layer should become visible or not.
	 *
	 * @author Pieter De Graef
	 */
	protected class LayerScaleVisibilityHandler implements ViewPortChangedHandler {

		public void onViewPortChanged(ViewPortChangedEvent event) {
			if (!visibleAtPreviousScale && isShowing()) {
				visibleAtPreviousScale = true;
				eventBus.fireEvent(new LayerShowEvent(AbstractLayer.this));
			} else if (visibleAtPreviousScale && !isShowing()) {
				visibleAtPreviousScale = false;
				eventBus.fireEvent(new LayerHideEvent(AbstractLayer.this));
			}
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy