Opened 12 years ago
Closed 12 years ago
#8421 closed defect (fixed)
Bing maps does not satisfy tile request for zoom level 0
Reported by: | The111 | Owned by: | The111 |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | JMapViewer | Version: | latest |
Keywords: | Cc: |
Description
The Bing maps API has a minimum zoom of 1.
http://msdn.microsoft.com/en-us/library/ff701724.aspx
However, most other tile sources in JMapViewer have a minimum zoom of 0. This should not be an issue, since Tile.loadPlaceholderFromCache can use the tile imagery data from zoom level 1 to populate the zoom level 0 tile. But the current TileController logic prevents this from working, since the loadPlaceholderFromCache method is only called for null tiles, but not after a server error.
Fixed in [o29245]. TileController now checks for server error and calls Tile.loadPlaceholderFromCache if needed.
Release zip updated.