fleaflet / flutter_map

A versatile mapping package for Flutter. Simple and easy to learn, yet completely customizable and configurable, it's the best choice for mapping in your Flutter app.
https://pub.dev/packages/flutter_map
BSD 3-Clause "New" or "Revised" License
2.76k stars 860 forks source link

[FEATURE] disable caching for TileLayer #1974

Closed timur-harin closed 1 month ago

timur-harin commented 1 month ago

What do you want implemented?

I did not find how to disable caching or specify age of cache for TileLayer

What other alternatives are available?

No response

Can you provide any other information?

I already tried something like, but it does not work

tileProvider: NetworkTileProvider(
                silenceExceptions: true,
                headers: {
                  'Cache-Control': 'max-age=1',
                },
              ),

Severity

Obtrusive: No workarounds are available, and this is essential to me

timur-harin commented 1 month ago

@JaffaKetchup Please help with this problem

JaffaKetchup commented 1 month ago

The only caching included by default is session caching: see the note at the top of https://docs.fleaflet.dev/tile-servers/offline-mapping#caching. Please provide some additional detail if you need more help.