![JAR search and dependency download from the Maven repository](/logo.png)
org.zkoss.openlayers.protocol.HTTP Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zkopenlayers Show documentation
Show all versions of zkopenlayers Show documentation
ZK wrapper for OpenLayers 2
The newest version!
package org.zkoss.openlayers.protocol;
import java.util.Map;
import org.zkoss.openlayers.OLWidget;
import org.zkoss.openlayers.util.Function;
/**
*
* @author Jakub Kudla (kubakudla)
*
*/
public class HTTP extends OLWidget {
private Map _options;
public HTTP(Map options) {
_options = options;
}
@Override
protected String getNativeClass() {
return "OpenLayers.Protocol.HTTP";
}
@Override
protected Function newNativeObject() {
return new Function(getNativeClass(), _options);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy