visgl / react-map-gl

React friendly API wrapper around MapboxGL JS
http://visgl.github.io/react-map-gl/
Other
7.68k stars 1.33k forks source link

[Feat] Fetch tiles using axios #2409

Closed adriangonzalezrodrigo closed 8 hours ago

adriangonzalezrodrigo commented 1 week ago

Target Use Case

We would like to fetch map tiles using axios dependency instead of the default fetch call.

Proposal

We have done some tests using

transformRequest={transformRequest}

` const tileCache: Record<string, string> = {};

const fetchTileWithAxios = async (url: string): Promise => { try { const response = await axios.get(url, { responseType: 'arraybuffer' }); const blob = new Blob([response.data], { type: 'image/png' }); const objectURL = URL.createObjectURL(blob); tileCache[url] = objectURL; return objectURL; } catch (error) { console.error('Error fetching tile:', error); throw error; } };

const transformRequest = (url: string): RequestParameters => { if (tileCache[url]) { return { url: tileCache[url], credentials: 'same-origin', }; }

fetchTileWithAxios(url).catch(error => { console.error('Error in transformRequest:', error); });

return { url: '', credentials: 'same-origin', }; }; `

But this works but with a "delay". Maybe this is not possible because react-mapgl internally uses the tile and caches the result, etc...

Pessimistress commented 1 week ago

react-map-gl is a wrapper of the base map library. It does not implement any tile fetching logic.

adriangonzalezericsson commented 6 days ago

ok, thanks for the info. So I suppose this should be enabled by maplibre, mapbox or the lib you use to fetch tiles, right?

Pessimistress commented 8 hours ago

Yes, you need to make a feature request to Maplibre.