Slow loading of map tiles in 6.0.2
See original GitHub issueI use version 6.0.2. Compared to version 6.0.1, version 6.0.2 takes a long time to download map tiles, especially noticeable on Android 8.
I use
Configuration.getInstance().setUserAgentValue(getContext().getPackageName());
mapView.setTileSource(TileSourceFactory.MAPNIK);
implementation group: 'org.osmdroid', name: 'osmdroid-android', version: '6.0.2'
Issue Analytics
- State:
- Created 5 years ago
- Comments:16
Top Results From Across the Web
Tiles loading extremaly slow - CesiumJS - Cesium Community
Tiles, especially the most used ones - The Open Street maps loading extremely slow. Is there a way to speed it up ?...
Read more >Manually building a tile server (20.04 LTS) - Switch2OSM
This page describes how to install, setup and configure all the necessary software to operate your own tile server. These step-by-step instructions were ......
Read more >Installing an OpenStreetMap Tile Server on Ubuntu
The OSM Tile Server is a web server specialized in delivering raster maps, ... (might be slow, depending on the network). carto; openstreetmap-carto....
Read more >How to Set Up OpenStreetMap Tile Server on Ubuntu 18.04
Learn how to build your own OpenStreetMap tile server on Ubuntu 18.04. ... Run the following command to load map stylesheet and map...
Read more >OSMDroid loads tiles extremely slowly - Stack Overflow
Do the tiles load faster in your browser on openstreetmap.org? You could try a different tile source. There can be many reasons for...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@chrisss404 I’ve just PR’ed #1235, which includes a
MapTileProviderBasic.setOfflineFirst(boolean)
method. In your case you need to call it withfalse
. And you won’t need yourGitHubIssueMapTileProviderBasic
class anymore. Tell me if it works.@s-ilnar Feel free to test and close the issue if relevant.
@monsieurtanuki thank you for your detailed instructions.
I can confirm that I’m getting the same behavior as with 6.0.1 using the adapted map tile provider. See 6.0.3-with-adapted-tile-provider.
Just for reference, here are my changes: GitHubIssueMapTileProviderBasic.txt
Thanks again and best regards