org.gwtopenmaps.openlayers.client.layer.EventPaneOptions Maven / Gradle / Ivy
package org.gwtopenmaps.openlayers.client.layer;
/**
*
* @author Edwin Commandeur - Atlis Information Systems
*
*/
public class EventPaneOptions extends LayerOptions {
public void setSmoothDragPan(boolean smoothDragPan) {
getJSObject().setProperty("smoothDragPan", smoothDragPan);
}
public void setIsFixed(boolean isFixed) {
getJSObject().setProperty("isFixed", isFixed);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy