org.gwtopenmaps.openlayers.client.strategy.FixedStrategyImpl Maven / Gradle / Ivy
package org.gwtopenmaps.openlayers.client.strategy;
import org.gwtopenmaps.openlayers.client.util.JSObject;
/**
* TODO ahhughes, which 'create' method should we keep?
* @author HughesA
*
*/
public class FixedStrategyImpl {
public native static JSObject create() /*-{
return new $wnd.OpenLayers.Strategy.Fixed();
}-*/;
/**
* @author lorenzo
* @param options
* @return
*/
public native static JSObject create(JSObject options)/*-{
return new $wnd.OpenLayers.Strategy.Fixed();
}-*/;
public native static void preload(JSObject self, boolean load) /*-{
self.preload(load);
}-*/;
public native static void destroy(JSObject self) /*-{
self.destroy();
}-*/;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy