X-Git-Url: https://git.argeo.org/?p=gpl%2Fargeo-suite.git;a=blobdiff_plain;f=js%2Fsrc%2Fgeo%2FBboxVectorSource.js;h=e1051b08394418a7b684b9fb36e349e1ab353ac2;hp=f0721ff001ac3412abc765f051dca1288544fe1f;hb=e9978679e86dcd297270432e4ed953b782f1e7c6;hpb=36a9a4d540f617bd23170a109ee08e9e200e2143 diff --git a/js/src/geo/BboxVectorSource.js b/js/src/geo/BboxVectorSource.js index f0721ff..e1051b0 100644 --- a/js/src/geo/BboxVectorSource.js +++ b/js/src/geo/BboxVectorSource.js @@ -1,7 +1,7 @@ import VectorSource from 'ol/source/Vector.js'; import { bbox } from 'ol/loadingstrategy'; -import { transformToLatLonExtent } from './OpenLayersUtils.js'; +import { transformToEpsg4326LatLonExtent } from './OpenLayersUtils.js'; export default class BboxVectorSource extends VectorSource { constructor(options) { @@ -11,7 +11,7 @@ export default class BboxVectorSource extends VectorSource { static processOptions(options) { options.strategy = bbox; options.url = function(extent, resolution, projection) { - var bbox = transformToLatLonExtent(extent, projection); + var bbox = transformToEpsg4326LatLonExtent(extent, projection); const baseUrl = options.baseUrl; // invert bbox order in order to have minLat,minLon,maxLat,maxLon as required by WFS 2.0.0