使用openlayers 4,如何将wfs请求适合当前视图并将其限制为最小缩放级别以上

时间:2017-12-02 20:21:07

标签: javascript openlayers

我正在查看包含openlayers 4的地块,我不知道如何将wfs请求适合当前视图并将其限制为最小缩放级别及以上(因为1000限制)。目前,结果仅返回与显示的地图视图无关的前1000个宗地。 这个请求是

     var parcellaireSource =  new ol.source.Vector({
        format: new ol.format.GeoJSON(),
        url: function(extent) {
          return 'https://wxs.ign.fr/api key/geoportail/wfs?request=GetCapabilities&SERVICE=WFS&VERSION=2.0.0&request=GetFeature&typename=BDPARCELLAIRE-VECTEUR_WLD_BDD_WGS84G:parcelle&outputFormat=application/json&srsname=EPSG:2154&' +
              'bbox=' + extent.join(',') + ',EPSG:2154';
        },
        strategy: ol.loadingstrategy.bbox,
        });
     var parcellairewfs =  new ol.layer.Vector({
        source: parcellaireSource
      });

0 个答案:

没有答案