Skip to content

A Flutter package that downloads map tiles for offline using

License

Notifications You must be signed in to change notification settings

GULERTOLGA/tile_crawler

Repository files navigation

A Flutter package that downloads map tiles for offline using.

Usage

    TileCrawler crawler = TileCrawler(DownloadOptions(
    tileUrlFormat:
    "https://a.tile.openstreetmap.org/{z}/{x}/{y}.png",
    topLeft: LatLng(latitude: 39.898931, longitude: 32.701024),
    bottomRight: LatLng(latitude: 39.845293, longitude: 32.803630),
    minZoomLevel: 10,
    downloadFolder: dir.path,
    client: HttpClient(),
    maxZoomLevel: 19));