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

org.gwtopenmaps.openlayers.client.control.Navigation Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package org.gwtopenmaps.openlayers.client.control;

import org.gwtopenmaps.openlayers.client.util.JSObject;

/**
 *
 *
 * This control is added to OpenLayers maps by default.
 *
 * Other controls that are added by default are the {@link PanZoom},
 * {@link ArgParser}, and {@link Attribution}.
 *
 * @author Edwin Commandeur
 * @since GWT-OL 0.4, OL ...
 */
public class Navigation extends Control {

	protected Navigation(JSObject element) {
		super(element);
	}

	public Navigation() {
		this(NavigationImpl.create());
	}

	public Navigation(NavigationOptions options){
		this(NavigationImpl.create(options.getJSObject()));
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy