new Style(opt_options)
Name | Type | Description | ||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
options |
Style options.
|
Methods
-
Clones the style.
Returns:
The cloned style.
-
Get the fill style.
Returns:
Fill style.
-
getGeometry(){string|module:ol/geom/Geometry~Geometry|module:ol/style/Style~GeometryFunction}
style/Style.js, line 259 -
Get the geometry to be rendered.
Returns:
Feature property or geometry or function that returns the geometry that will be rendered with this style.
-
Get the function used to generate a geometry for rendering.
Returns:
Function that is called with a feature and returns the geometry to render instead of the feature's geometry.
-
Get the image style.
Returns:
Image style.
-
Get the custom renderer function that was configured with
#setRenderer
or therenderer
constructor option.Returns:
Custom renderer function.
-
Get the stroke style.
Returns:
Stroke style.
-
Get the text style.
Returns:
Text style.
-
getZIndex(){number|undefined}
style/Style.js, line 350 -
Get the z-index for the style.
Returns:
ZIndex.
-
setFill(fill)
style/Style.js, line 287 -
Set the fill style.
Name Type Description fill
module:ol/style/Fill~Fill Fill style.
-
setGeometry(geometry)
style/Style.js, line 362 -
Set a geometry that is rendered instead of the feature's geometry.
Name Type Description geometry
string | module:ol/geom/Geometry~Geometry | module:ol/style/Style~GeometryFunction Feature property or geometry or function returning a geometry to render for this style.
-
setImage(image)
style/Style.js, line 305 -
Set the image style.
Name Type Description image
module:ol/style/Image~ImageStyle Image style.
-
setRenderer(renderer)
style/Style.js, line 248 -
Sets a custom renderer function for this style. When set,
fill
,stroke
andimage
options of the style will be ignored.Name Type Description renderer
module:ol/style/Style~RenderFunction | null Custom renderer function.
-
setStroke(stroke)
style/Style.js, line 323 -
Set the stroke style.
Name Type Description stroke
module:ol/style/Stroke~Stroke Stroke style.
-
setText(text)
style/Style.js, line 341 -
Set the text style.
Name Type Description text
module:ol/style/Text~Text Text style.
-
setZIndex(zIndex)
style/Style.js, line 389 -
Set the z-index.
Name Type Description zIndex
number | undefined ZIndex.