mtmc 0.0.7 mtmc: ^0.0.7 copied to clipboard
Map Tile Memory Caching is used to store flutter map tile images on the device memory
FlutterMap(
options: const MapOptions(
initialZoom: 17,
minZoom: 3,
maxZoom: 20,
),
children: [
TileLayer(
urlTemplate: 'https://tile.openstreetmap.org/{z}/{x}/{y}.png',
tileProvider: MTMC(),
),
],
),