org.opengis.style.PolygonSymbolizer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gt-opengis Show documentation
Show all versions of gt-opengis Show documentation
Standard interfaces implemented throughout the library.
/*
* GeoTools - The Open Source Java GIS Toolkit
* http://geotools.org
*
* (C) 2011, Open Source Geospatial Foundation (OSGeo)
* (C) 2008, Open Geospatial Consortium Inc.
*
* All Rights Reserved. http://www.opengis.org/legal/
*/
package org.opengis.style;
import org.opengis.annotation.Extension;
import org.opengis.annotation.XmlElement;
import org.opengis.filter.expression.Expression;
/**
* Holds the information that indicates how to draw the lines and the interior of polygons.
*
* @version Symbology Encoding
* Implementation Specification 1.1.0
* @author Open Geospatial Consortium
* @author Johann Sorel (Geomatys)
* @author Chris Dillard (SYS Technologies)
* @since GeoAPI 2.2
*/
@XmlElement("PolygonSymbolizer")
public interface PolygonSymbolizer extends Symbolizer {
/**
* Returns the object containing all the information necessary to draw styled lines. This is
* used for the edges of polygons.
*
* @return Stroke
*/
@XmlElement("Stroke")
Stroke getStroke();
/**
* Returns the object that holds the information about how the interior of polygons should be
* filled. This may be null if the polygons are not to be filled at all.
*
* @return Fill
*/
@XmlElement("Fill")
Fill getFill();
/**
* The Displacement gives the X and Y displacements from the original geometry. This element may
* be used to avoid over-plotting of multiple PolygonSymbolizers for one geometry or supplying
* "shadows" of polygon gemeotries. The displacements are in units of pixels above and to the
* right of the point. The default displacement is X=0, Y=0.
*
* @return Displacement
*/
@XmlElement("Displacement")
Displacement getDisplacement();
/**
* PerpendicularOffset works as defined for LineSymbolizer, allowing to draw polygons smaller or
* larger than their actual geometry. The distance is in uoms and is positive to the outside of
* the polygon. Negative numbers mean drawing the polygon smaller. The default offset is 0.
*
* @return Expression
*/
@XmlElement("PerpendicularOffset")
Expression getPerpendicularOffset();
/**
* calls the visit method of a StyleVisitor
*
* @param visitor the style visitor
*/
@Extension
Object accept(StyleVisitor visitor, Object extraData);
}