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

org.gwtopenmaps.openlayers.client.style.Symbolizer Maven / Gradle / Ivy

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

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

/**
 * 
 * @author Maciej Jezierski - Pinocchio
 * Base class representing a symbolizer used for feature rendering
 * 
 */
public class Symbolizer extends JSObjectWrapper {

	protected Symbolizer(JSObject jsObject) {
		super(jsObject);
	}
	
	public void setZIndex(int zIndex) {
		SymbolizerImpl.setZIndex(this.getJSObject(), zIndex);
	}

	/**
	 * Default is 0.
	 * @return
	 */
	public int getZIndex() {
		return SymbolizerImpl.getZIndex(this.getJSObject());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy