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

org.zkoss.openlayers.format.WKT Maven / Gradle / Ivy

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

import java.util.Map;

import org.zkoss.openlayers.util.Function;

/**
 * 
 * @author Jakub Kudla (kubakudla)
 * 
 */
public class WKT extends Format {
	private Map _options;

	public WKT(Map options) {
		_options = options;
	}

	@Override
	protected String getNativeClass() {
		return "OpenLayers.Format.WKT";
	}

	@Override
	protected Function newNativeObject() {
		return new Function(getNativeClass(), _options);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy