Hi, there is a way to prevent the user to view the space outside the maps loaded offline?
Do you know how can I catch (in the mapMoved function) when the pointer is out from the stored map?
You need to know bounds of the map, and then can compare map center with the actual bounds. Library does not stored map bounds, as the file storage format has no this information.
One solution could be to implement MapListener which listens mapMoved events and if new center is outside your map area, then it is moving center back. There is no automatic limitation in the library.
/JaakL