This is an example of a customized MapView. Map is based on tiles which are stored as images on the remote server.
Loading tiles when scrolling map:
All visible tiles are loaded:
Current MapView implementation supports:
- scrolling
- memory cache (RAM-based)
- storage cache (ROM-based)
As a cache data structure LRUCache is used, which has been implemented from the scratch.

