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

org.gwtopenmaps.openlayers.client.layer.VirtualEarthOption Maven / Gradle / Ivy

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

public class VirtualEarthOption extends EventPaneOptions {

	public void setType(String type) {
		getJSObject().setProperty("type", type);
	}

	public void setSphericalMercator(boolean value) {
		getJSObject().setProperty("sphericalMercator", value);
	}
	
	public void setWrapDateLine(boolean wrapDateLine){
		getJSObject().setProperty("wrapDateLine", wrapDateLine);
	}
	
	public void setAnimationEnabled(boolean animationEnabled){
		getJSObject().setProperty("animationEnabled", true);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy