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

org.zkoss.openlayers.control.DragFeature Maven / Gradle / Ivy

The newest version!
package org.zkoss.openlayers.control;

import static org.zkoss.openlayers.util.Helper.*;

import java.util.Map;

import org.zkoss.openlayers.layer.Layer;
import org.zkoss.openlayers.util.Function;

/**
 * 
 * @author Jakub Kudla (kubakudla)
 * 
 */
public class DragFeature extends Control {

	private Layer _layer;

	public DragFeature(Layer layer, Map options) {
		super(options);
		_layer = layer;

	}

	@Override
	protected String getNativeClass() {
		return "OpenLayers.Control.DragFeature";
	}

	@Override
	protected Function newNativeObject() {
		return new Function(getNativeClass(),
				_layer != null ? _layer.toClientWidget() : null, mergeMap(
						getOptions(), pair("uuid", getUuid())));
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy