Class ImageLayer
- java.lang.Object
-
- com.vaadin.flow.component.map.configuration.AbstractConfigurationObject
-
- com.vaadin.flow.component.map.configuration.layer.Layer
-
- com.vaadin.flow.component.map.configuration.layer.ImageLayer
-
- All Implemented Interfaces:
Serializable
public class ImageLayer extends Layer
Layer for server-rendered images that are available in arbitrary extents and resolutions.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class com.vaadin.flow.component.map.configuration.AbstractConfigurationObject
propertyChangeSupport
-
-
Constructor Summary
Constructors Constructor Description ImageLayer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImageSourcegetSource()StringgetType()The unique type name of this class.voidsetSource(ImageSource source)Sets the source for this layer.-
Methods inherited from class com.vaadin.flow.component.map.configuration.layer.Layer
getBackground, getMaxZoom, getMinZoom, getOpacity, getzIndex, isVisible, setBackground, setMaxZoom, setMinZoom, setOpacity, setVisible, setzIndex
-
Methods inherited from class com.vaadin.flow.component.map.configuration.AbstractConfigurationObject
addChild, addPropertyChangeListener, collectChanges, deepMarkAsDirty, getId, markAsDirty, notifyChange, notifyChange, removeChild, removePropertyChangeListener, setId, update
-
-
-
-
Method Detail
-
getType
public String getType()
Description copied from class:AbstractConfigurationObjectThe unique type name of this class. Used by the client-side synchronization mechanism to determine which OpenLayers class to synchronize into.- Specified by:
getTypein classAbstractConfigurationObject
-
getSource
public ImageSource getSource()
- Returns:
- source for this layer, null by default
-
setSource
public void setSource(ImageSource source)
Sets the source for this layer. The source must be a subclass ofImageSource, which means that it provides single, untiled images.- Parameters:
source- the new source for the layer, not null
-
-