如何使用 openlayers 从 Geoserver WMS 层获取特定数据列?

How to Fetch Specific data column from Geoserver WMS layer using openlayers?

我在 Geoserver 中有一个图层,我使用 openlayers 在 HTML 网页上显示它,但它有很多列,

我只想显示 table 的特定 1-2 列“ 通过传递列名 的字符串”,而不是整个 table.

有什么办法吗?


      map.on('singleclick', function (evt) {
        document.getElementById('info').innerHTML = '';
        var myviewResolution = myview.getResolution();
        var url = india_dist_rainfall_layer_source.getFeatureInfoUrl(
          evt.coordinate,
          myviewResolution,
          'EPSG:4326',
          {'INFO_FORMAT': 'text/html', 'FEATURE_COUNT': '5'},
          
        );
        if (url) {
          fetch(url)
            .then(function (response) { return response.text(); })
            .then(function (html) {
              document.getElementById('info').innerHTML = html;
            });
        }
      });

您可以使用 WMS 供应商选项 propertyName

var url = india_dist_rainfall_layer_source.getFeatureInfoUrl(
          evt.coordinate,
          myviewResolution,
          'EPSG:4326',
          {'INFO_FORMAT': 'text/html', 
           'FEATURE_COUNT': '5',
           'propertyName': 'forecastDate,rainfall'},  
        );

您可以请求 another format 中的数据(例如 JSON)并在您自己的代码中处理它以提供您需要的格式。

或者,您可以创建一个 FreeMarker template 来自定义 HTML 输出。