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

org.gwtopenmaps.openlayers.client.PixelImpl Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package org.gwtopenmaps.openlayers.client;

import org.gwtopenmaps.openlayers.client.util.JSObject;

/**
 * 
 * @author Erdem Gunay
 * @author Curtis Jensen
 *
 */
class PixelImpl {

	public static native JSObject create(int x, int y)/*-{
		return new $wnd.OpenLayers.Pixel(x, y);
	}-*/;
	
    public static native JSObject create(float x, float y)/*-{
        return new $wnd.OpenLayers.Pixel(x, y);
    }-*/;

	public static native int getX(JSObject self)/*-{
		return self.x;
	}-*/;
	
	public static native int getY(JSObject self)/*-{
		return self.y;
	}-*/;
	
	public static native String toString(JSObject self)/*-{
		return self.toString();
	}-*/;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy