Class TLcyWMTSClientGetFeatureInfoAddOn

java.lang.Object
com.luciad.lucy.addons.ALcyAddOn
com.luciad.lucy.addons.ALcyPreferencesAddOn
com.luciad.lucy.addons.ALcyFormatAddOn
com.luciad.lucy.addons.ogc.wmtsclient.getfeatureinfo.TLcyWMTSClientGetFeatureInfoAddOn

public class TLcyWMTSClientGetFeatureInfoAddOn extends ALcyFormatAddOn

This add-on allows to select and inspect the properties of objects visualized on a WMTS layer. It uses GetFeatureInfo requests to do this. This add-on also adds support to visualize GetFeatureInfo responses for GXY views.

Note that in order to visualize the GetFeatureInfo responses on a Lightspeed view, the TLcyLspWMTSClientGetFeatureInfoAddOn add-on is required in addition to this one.

This add-on registers a format that is used to visualize GetFeatureInfo layers. By overriding the createBaseFormat() method, it is possible to return a custom format that for example customizes the layer creation.

The format that is returned by default has disabled all workspace support, meaning that the GetFeatureInfo layer will not be saved to the workspace. The consequence of this is that currently visualized GetFeatureInfo responses on the map will not be visualized anymore when reloading a workspace.

To see how these GetFeatureInfo requests are performed, and how the responses are converted to layers, see samples.ogc.wmts.client.common.WMTSGetFeatureInfoMouseListener. The functionality in this add-on is based on this sample class. When clicking on a WMTS layer with the select controller, the following happens:

  • This add-on will send a GetFeatureInfo request to the WMTS server info format "application/json". It is currently not possible to select a different info format.
  • When this add-on receives the response of the WMTS server, it will convert it to an ILcdModel, and visualize it on the map. When the response contains a geometry (ALcdShape#fromDomainObject), the geometry will be visualized. Otherwise, a point will be visualized at the location of the request.
  • Similar to all other formats in Lucy, the TLcySelectionEditorAddOn can show the object properties of the selected objects by looping over the available ILcyCustomizerPanelFactory instances. Registering your own ILcyCustomizerPanelFactory for the GetFeatureInfo domain objects allows to customize the object properties panel. You can use the constants in this class to recognize those domain objects, and to retrieve the info available in the GetFeatureInfo response domain objects.
Since:
2021.0
  • Constructor Details

    • TLcyWMTSClientGetFeatureInfoAddOn

      public TLcyWMTSClientGetFeatureInfoAddOn()
      Default constructor
  • Method Details

    • plugInto

      public void plugInto(ILcyLucyEnv aLucyEnv)
      Description copied from class: ALcyFormatAddOn

      Creates and plugs in the add-on's format.

      Overrides:
      plugInto in class ALcyFormatAddOn
      Parameters:
      aLucyEnv - the Lucy environment to plug into
      See Also:
    • createBaseFormat

      protected ALcyFormat createBaseFormat()
      Description copied from class: ALcyFormatAddOn

      Returns 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 ALcyFormat createBaseFormat() {
         return new ALcyFormatWrapper(super.createBaseFormat()){
           @Override
           protected ILcdGXYLayerFactory createGXYLayerFactory(){
             final ILcdGXYLayerFactory delegate = super.createGXYLayerFactory();
             return new ILcdGXYLayerFactory(){
               @Override
               public ILcdGXYLayer createGXYLayer(ILcdModel aModel){
                 ILcdGXYLayer layer = delegate.createGXYLayer(aModel);
                 if (layer != null){
                   ILcdIcon icon = ...;
                   layer.setIcon(icon);
                 }
                 return layer;
               }
             }
           }
         }
       }
       
      Specified by:
      createBaseFormat in class ALcyFormatAddOn
      Returns:
      a new format for this add-on
    • createFormatWrapper

      protected final ALcyFormat createFormatWrapper(ALcyFormat aBaseFormat)
      Description copied from class: ALcyFormatAddOn

      Returns a new data format wrapper for this add-on. A format wrapper extends the base format with aspects such as asynchronous painting, mutable file behavior, 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:
      createFormatWrapper in class ALcyFormatAddOn
      Parameters:
      aBaseFormat - the base format to wrap
      Returns:
      a new format for this add-on
      See Also: