Class TLcyLspWMTSClientGetFeatureInfoAddOn
This add-on adds support to visualize WMTS GetFeatureInfo responses for Lightspeed views.
This add-on registers a format that is used to visualize GetFeatureInfo responses, see
TLcyWMTSClientGetFeatureInfoAddOn. By overriding the createBaseFormat() method, it is
possible to return a custom format that for example customizes the layer creation.
- Since:
- 2021.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected ALcyLspFormatReturns a new data format for this add-on.protected final ALcyLspFormatcreateFormatWrapper(ALcyLspFormat aBaseFormat) Returns a new data format wrapper for this add-on.voidplugInto(ILcyLucyEnv aLucyEnv) Creates and plugs in the add-on's format and preferences tool.Methods inherited from class com.luciad.lucy.addons.lightspeed.ALcyLspFormatAddOn
createFormatTool, getFormat, unplugFromMethods inherited from class com.luciad.lucy.addons.ALcyPreferencesAddOn
createPreferencesTool, getLongPrefix, getLucyEnv, getPreferences, getPreferencesTool, getShortPrefixMethods inherited from class com.luciad.lucy.addons.ALcyAddOn
getConfigSourceName, getDisplayName, setConfigSourceName, setDisplayName
-
Constructor Details
-
TLcyLspWMTSClientGetFeatureInfoAddOn
public TLcyLspWMTSClientGetFeatureInfoAddOn()Creates a new add-on instance.
-
-
Method Details
-
plugInto
Description copied from class:ALcyLspFormatAddOnCreates and plugs in the add-on's format and preferences tool.- Overrides:
plugIntoin classALcyLspFormatAddOn- Parameters:
aLucyEnv- the Lucy environment to plug into- See Also:
-
createBaseFormat
Description copied from class:ALcyLspFormatAddOnReturns a new data format for this add-on. Override this method to extend the default format with new functionality.
For example, to alter the icon of the layers of this format, you can decorate the layer factory created in the format:
@Override protected ALcyLspFormat createBaseFormat() { return new ALcyLspFormatWrapper(super.createBaseFormat()){ @Override protected ILspLayerFactory createLayerFactory(){ final ILspLayerFactory delegate = super.createLayerFactory(); return new ILspLayerFactory(){ @Override public boolean canCreateLayers(ILcdModel aModel){ return delegate.canCreateLayers(aModel); } @Override public Collection<ILspLayer> createLayers(ILcdModel aModel){ Collection<ILspLayer> layers = delegate.createLayers(aModel); for(ILspLayer layer : layers){ ILcdIcon icon = ...; layer.setIcon(icon) } return layers; } } } } }- Specified by:
createBaseFormatin classALcyLspFormatAddOn- Returns:
- a new format for this add-on
-
createFormatWrapper
Description copied from class:ALcyLspFormatAddOnReturns a new data format wrapper for this add-on. A format wrapper extends the base format with aspects such as safe guarding, etc.
Overriding this method of an existing add-on should be done with extreme care as add-ons typically rely on the wrappers that should be present (e.g. a safe guard).
- Specified by:
createFormatWrapperin classALcyLspFormatAddOn- Parameters:
aBaseFormat- the base format to wrap- Returns:
- a new format for this add-on
- See Also:
-