I have a deployed, deployed, and previously successful application that uses Osmdroid to download fragments from the default tile provider, which is Mapnik
mMapView.setTileSource(TileSourceFactory.DEFAULT_TILE_SOURCE);
or
mMapView.setTileSource(TileSourceFactory.MAPNIK);
Until recently (possibly from today) tiles on real devices (phone and tablet) are no longer loaded. I am using osmdroid version 3.0.5. If I try the latest version 4.0 in a small sample project on the emulator, I see โ403 forbidden answersโ โโin logcat when I try to load maptiles. If I switch the tile source to
mMapView.setTileSource(TileSourceFactory.MAPQUESTOSM);
then the display is visible without problems. I donโt see any messages about the list of releases of Osmdroid websites , and a Google search did not reveal any new problems, so I ask if anyone else sees this new behavior from Mapnik and can know about the fix?
Nickt source share