Themenconfig.GroupLayer WFS

Issue #654 resolved
Former user created an issue

WFS-Dienste werden in Themenconfig.GroupLayer nicht mehr angezeigt. WMS-Dienste funktionieren. Betrifft auch 2.14.0.

Comments (5)

  1. David Messerer

    Problem:

    wfs.js - line 275

      if (this.get("isSelected")) {
                this.get("layerSource").clear(true);
                this.get("layerSource").addFeatures(features);
                this.styling();
                this.prepareFeaturesFor3D(features);
                this.featuresLoaded(features);
            }
    

    Mögliche Lösung:

    if (this.get("isSelected") || this.get("isChildLayer")) {
                this.get("layerSource").clear(true);
                this.get("layerSource").addFeatures(features);
                this.styling();
                this.prepareFeaturesFor3D(features);
                this.featuresLoaded(features);
            }
        },
    

  2. Log in to comment