FeatureInfo

This element provides feature info capabilities to Mapbender. It works with WMS.

../../../_images/feature_info1.png

The WMS Krankenhäuser NRW’ (https://www.wms.nrw.de/wms/krankenhaus?Service=WMS&Version=1.3.0&Request=getCapabilities) from ‘Ministerium für Gesundheit, Emanzipation, Pflege und Alter NRW’ serves as example service.

Configuration

In the example configuration, the element FeatureInfo is integrated in the ‘Content’ area:

../../../_images/feature_info_content1.png ../../../_images/feature_info_configuration1.png
  • Auto-open: Enable or disable autoopening of the copyright window when starting the application (default: false).

  • Deactivate on close: True/false to deactivate the functionality after closing the result dialog (default: true).

  • Print Result: Offer a link to print the result of FeatureInfo (default: false).

  • Only valid: Display valid WMS (default: false).

  • Title: Title of the element. It will be indicated next to the button.

  • Target: ID of Map element to query.

  • Display type: Display of the information, tabs or accordion.

  • Max count: Maximum number of results that should be displayed in the result dialog.

  • Width/Height: Width/height of the dialog in px.

  • Highlighting enabled: Deactivates/activates FeatureInfo Highlighting (default: false).

  • Default color Sets color for selected objects.

  • Hover color Sets hover color for selected objects.

A button is also needed for complete frontend integration. Further information on how to configurate a button: Button.

Layertree settings

The layer is visible and FeatureInfo request for the layer is activated.

../../../_images/feature_info_on1.png

The layer is visible and the FeatureInfo request for the layer is deactivated.

../../../_images/feature_info_off1.png

The layer is invisible and there will be no FeatureInfo request (even if FeatureInfo request is activated).

../../../_images/feature_info_on_layer_invisible1.png

Display as tabs and accordion

With the switch “type”, the responses of multiple services can be displayed either in different tabs or in an accordion.

Example Tabs:

../../../_images/feature_info_tabs1.png

Example Accordion:

../../../_images/feature_info_accordion1.png

Printing the results

The switch “Print result” allows you to print the output of the FeatureInfo. A “Print” button will appear on the FeatureInfo dialogue. The printing itself is achieved with the printing dialogue of your web browser.

To make sure that all images and background colors are available in your printout, you should check the print settings of your web browser: In Firefox, you can check the option “Print background”. In Chrome-based browsers the option is called “Background graphics”. The used fonts can vary on a printout as PDF and depend on the specific viewer. Furthermore, most web browsers modify the pages a bit before printing to save ink/toner.

FeatureInfo Highlighting

Individual geometries of a WMS can be highlighted with FeatureInfo. This is particularly helpful for the work with comprehensive WMS, because it allows an easier identification of geometries.

A FeatureInfo request with activated highlighting could look like this:

../../../_images/feature_info_highlighting1.png

The figure above highlights several geometries in the map (Postcodes (‘PLZ’): 53111, 53113 und 53115). The FeatureInfo dialog only displays information belonging to these geometries. The area 53115 is highlighted red due to hovering.

FeatureInfo Highlighting is activated within the Feature Info element. Here, users get the option to choose a default and hover color.

../../../_images/feature_info_configuration_highlighting1.png

Furthermore, the HTML output of the FeatureInfo request has to be adjusted. In order to do so, the geometry query has to be hidded as a WKT in an HTML div (will not be displayed). In addition, the EPSG code must be transferred and there must be a unique ID in the HTML div (see configuration below). Mapbender evaluates this information and displays the geometries on the map. When you hover over the entries in the info window, the associated geometry is highlighted accordingly. The adaptation looks different depending on which WMS server software you are using. Adjustments can easily be made for MapServer, QGIS Server, GeoServer.

The necessary adjustment is shown here using a configuration for MapServer. In the DATA specification, the geometry is put out as a WKT. In addition, the FeatureInfo template is adapted. If a WMS is now queried via GetFeatureInfo, the corresponding areas are highlighted on the map.

DATA "geom from (Select *, ST_AsText(geom) as geom_wkt from plz) as foo USING UNIQUE gid USING SRID 4326"

<div class="geometryElement" id="[gid]" data-geometry="[geom_wkt]" data-srid="EPSG:4326">
<table>
      ...
<table>
</div>

YAML-Definition:

title: FeaureInfo              # title of the element
tooltip: Feature Info          # text to use as tooltip
type: dialog                   # Default: dialog.
target: map                    # Id of Map element to query
autoActivate: false            # true/false open when application is started (default: false)
deactivateOnClose: true        # true/false to deactivate the functionality after closing the result dialog (default: true)
onlyValid: false               # require correct HTML format of response (default: false)
printResult: false             # offer a link to print the result of the featureInfo (default: false)
displayType: tabs              # tabs/accordion (default: tabs)
width: 700                     # width of the dialog in pixels (default: 700)
height: 500                    # height of the dialog in pixels (default: 500)
maxCount: 100                      # maximum count of hits to be displayed
highlighting: false            # deactivates/activates FeatureInfo Highlighting (default: false)
featureColorDefault: #ffa500   # color to highlight selected objects
featureColorHover: #ff0000     # color to highlight selected objects during hovering