Package org.geotools.api.style
Interface PointSymbolizer
-
- All Superinterfaces:
Symbolizer
- All Known Implementing Classes:
PointSymbolizerImpl
public interface PointSymbolizer extends Symbolizer
Indicates how to draw point geometries on a map.- Since:
- GeoAPI 2.2
- Author:
- Open Geospatial Consortium, Johann Sorel (Geomatys), Chris Dillard (SYS Technologies)
-
-
Field Summary
Fields Modifier and Type Field Description static String
FALLBACK_ON_DEFAULT_MARK
Boolean vendor option, defaults to true.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Object
accept(TraversingStyleVisitor visitor, Object extraData)
calls the visit method of a StyleVisitorGraphic
getGraphic()
Provides the graphical-symbolization parameter to use for the point geometry.void
setGraphic(Graphic graphic)
Provides the graphical-symbolization parameter to use for the point geometry.-
Methods inherited from interface Symbolizer
accept, getDescription, getGeometry, getGeometryPropertyName, getName, getOptions, getUnitOfMeasure, hasOption, setDescription, setGeometry, setGeometryPropertyName, setName, setUnitOfMeasure
-
-
-
-
Field Detail
-
FALLBACK_ON_DEFAULT_MARK
static final String FALLBACK_ON_DEFAULT_MARK
Boolean vendor option, defaults to true. If true, in case no specified mark or graphics can be used, the default square mark will be used instead. If false, the symbol will not be painted.- See Also:
- Constant Field Values
-
-
Method Detail
-
getGraphic
Graphic getGraphic()
Provides the graphical-symbolization parameter to use for the point geometry.- Returns:
- The Graphic to be used when drawing a point.
-
accept
Object accept(TraversingStyleVisitor visitor, Object extraData)
calls the visit method of a StyleVisitor- Specified by:
accept
in interfaceSymbolizer
- Parameters:
visitor
- the style visitor- Returns:
- value produced
-
setGraphic
void setGraphic(Graphic graphic)
Provides the graphical-symbolization parameter to use for the point geometry.
-
-