Re-enable other fetchers

This commit is contained in:
Pieter Vander Vennet 2024-07-27 15:13:13 +02:00
parent caa2e18a03
commit b22f2e56bb

View file

@ -341,15 +341,15 @@ export class CombinedFetcher {
constructor(radius: number, maxage: Date, indexedFeatures: IndexedFeatureSource) { constructor(radius: number, maxage: Date, indexedFeatures: IndexedFeatureSource) {
this.sources = [ this.sources = [
// new ImagesInLoadedDataFetcher(indexedFeatures, radius), new ImagesInLoadedDataFetcher(indexedFeatures, radius),
new ImagesFromCacheServerFetcher(radius) new ImagesFromCacheServerFetcher(radius),
/* new MapillaryFetcher({ new MapillaryFetcher({
panoramas: "no", panoramas: "no",
max_images: 25, max_images: 25,
start_captured_at : maxage start_captured_at : maxage
}), }),
new P4CImageFetcher("mapillary"), new P4CImageFetcher("mapillary"),
new P4CImageFetcher("wikicommons"), //*/ new P4CImageFetcher("wikicommons"),
].map(f => new CachedFetcher(f)) ].map(f => new CachedFetcher(f))
} }