Class BaseLayerOptions
java.lang.Object
io.jmix.mapsflowui.kit.component.model.layer.option.BaseLayerOptions
- All Implemented Interfaces:
HasBaseLayerOptions
- Direct Known Subclasses:
BaseImageLayerOptions
,BaseTileLayerOptions
,BaseVectorLayerOptions
Abstract implementation of options for each layer.
For more details see: Layer docs
- See Also:
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
setClassName
(String className) Set a CSS class name to the layer element.void
Sets the bounding extent for layer rendering.void
setMaxZoom
(Double maxZoom) Sets the maximum view zoom level (inclusive) at which layer will be visible.void
setMinZoom
(Double minZoom) Sets the minimum view zoom level (exclusive) above which layer will be visible.void
setOpacity
(Double opacity) Sets the opacity of the layer, allowed values range from 0 to 1.void
setVisible
(Boolean visible) Set the visibility of the layer.void
Sets the z-index for layer rendering.
-
Field Details
-
className
-
opacity
-
visible
-
extent
-
zIndex
-
minZoom
-
maxZoom
-
-
Constructor Details
-
BaseLayerOptions
public BaseLayerOptions()
-
-
Method Details
-
getClassName
- Specified by:
getClassName
in interfaceHasBaseLayerOptions
- Returns:
- a CSS class name that should be used by the layer element,
null
value means that default value is used: 'ol-layer
'
-
setClassName
Description copied from interface:HasBaseLayerOptions
Set a CSS class name to the layer element. The default value 'ol-layer
'.Note, CSS class name is set only at creation time and cannot be changed at runtime.
For more details see: Layer docs
- Specified by:
setClassName
in interfaceHasBaseLayerOptions
- Parameters:
className
- CSS class name
-
getOpacity
- Specified by:
getOpacity
in interfaceHasBaseLayerOptions
- Returns:
- the opacity of the layer.
null
value means that default value is used: '1
'
-
setOpacity
Description copied from interface:HasBaseLayerOptions
Sets the opacity of the layer, allowed values range from 0 to 1. The default value is '1
'.For more details see: setOpacity() docs
- Specified by:
setOpacity
in interfaceHasBaseLayerOptions
- Parameters:
opacity
- opacity of the layer
-
getVisible
- Specified by:
getVisible
in interfaceHasBaseLayerOptions
- Returns:
- the visibility of the layer.
null
value means that default value is used: 'true
'
-
setVisible
Description copied from interface:HasBaseLayerOptions
Set the visibility of the layer. The default value istrue
.For more details see: setVisible() docs
- Specified by:
setVisible
in interfaceHasBaseLayerOptions
- Parameters:
visible
- whether layer should be visible
-
getExtent
- Specified by:
getExtent
in interfaceHasBaseLayerOptions
- Returns:
- the bounding extent for layer rendering or
null
if not set
-
setExtent
Description copied from interface:HasBaseLayerOptions
Sets the bounding extent for layer rendering. The layer will not be rendered outside of this extent. If not set, the layer will be visible at all extents.For more details see: setExtent() docs
- Specified by:
setExtent
in interfaceHasBaseLayerOptions
- Parameters:
extent
- extent at which the layer is visible
-
getZIndex
- Specified by:
getZIndex
in interfaceHasBaseLayerOptions
- Returns:
- z-index for layer rendering or
null
if not set
-
setZIndex
Description copied from interface:HasBaseLayerOptions
Sets the z-index for layer rendering.At rendering time, the layers will be ordered, first by Z-index and then by position. The default value is
0
.For more details see: setZIndex() docs
- Specified by:
setZIndex
in interfaceHasBaseLayerOptions
- Parameters:
zIndex
- z-index for layer rendering
-
getMinZoom
- Specified by:
getMinZoom
in interfaceHasBaseLayerOptions
- Returns:
- the minimum view zoom level (exclusive) above which layer will be visible or
null
if not set
-
setMinZoom
Description copied from interface:HasBaseLayerOptions
Sets the minimum view zoom level (exclusive) above which layer will be visible. Note that the zoom levels for layer visibility are based on the view zoom level, which may be different from a tile source zoom level.For more details see: setMinZoom() docs
- Specified by:
setMinZoom
in interfaceHasBaseLayerOptions
- Parameters:
minZoom
- zoom level (exclusive) above which layer will be visible
-
getMaxZoom
- Specified by:
getMaxZoom
in interfaceHasBaseLayerOptions
- Returns:
- the maximum view zoom level (inclusive) at which layer will be visible or
null
if not set
-
setMaxZoom
Description copied from interface:HasBaseLayerOptions
Sets the maximum view zoom level (inclusive) at which layer will be visible. Note that the zoom levels for layer visibility are based on the view zoom level, which may be different from a tile source zoom level.For more details see: setMaxZoom() docs
- Specified by:
setMaxZoom
in interfaceHasBaseLayerOptions
- Parameters:
maxZoom
- zoom level (inclusive) at which layer will be visible
-