diff --git a/libs/feature/dataviz/src/lib/service/data.service.ts b/libs/feature/dataviz/src/lib/service/data.service.ts index 8380d0503e..a2e1102718 100644 --- a/libs/feature/dataviz/src/lib/service/data.service.ts +++ b/libs/feature/dataviz/src/lib/service/data.service.ts @@ -174,7 +174,7 @@ export class DataService { } async getDownloadUrlsFromOgcApi(url: string): Promise { - const endpoint = new OgcApiEndpoint(this.proxy.getProxiedUrl(url)) + const endpoint = new OgcApiEndpoint(url) return await endpoint.allCollections .then((collections) => { return endpoint.getCollectionInfo(collections[0].name) @@ -185,7 +185,7 @@ export class DataService { } async getItemsFromOgcApi(url: string): Promise { - const endpoint = new OgcApiEndpoint(this.proxy.getProxiedUrl(url)) + const endpoint = new OgcApiEndpoint(url) return await endpoint.featureCollections .then((collections) => { return collections.length