-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Blank tiles #20
Comments
Hi, I tried to reproduce it locally, in a demo with a single level. No blank tiles. |
Hi, at first I was using version 2.1.3. I upgraded to 2.1.4 and the issue remains. |
I've tried your demo on my device and on two emulators, and I never saw a blank tile. Nice map BTW. Also, I have a remark about your TileStreamProvider: TileStreamProvider { row, col, _ ->
try {
application.assets.open("tiles/${col}x${row}.jpg")
} catch (e: Exception) {
null
}
} If on your device, there's something wrong when reading a tile file from the assets, you silently catch the exception. |
I wasn't able to reproduce it on other devices, but I found the cause. Thanks for your help! |
Hi
I'm having issues with a number of blank tiles. Sometimes when zooming those tiles get filled in at specific zoom ranges, but most of the time they are blank.
Depending on the map the number of blank tiles ranges between 0 and +-30. For a specific map, the number of blank tiles and the location of the blank tiles are consistent across app restarts.
I'm only using a level count of 1 and no errors are thrown while loading the map and the tiles.
Do you have any idea what could be the cause of this?
Thanks in advance!
The text was updated successfully, but these errors were encountered: