Interface InternalGeoMapListener
-
- All Known Implementing Classes:
InfoPage
public interface InternalGeoMapListenerInterface for tapping into internal details of an InternalGeoMap
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidmapPainted(int tileCount, long time)Notifies listener that the control has been (re)paintedvoidtileCacheUpdated(int used, int size)Notifies listener that the tile cache has been updatedvoidtilePainted(TileRef tileRef)Notifies listener that a tile has been (re)painted
-
-
-
Method Detail
-
tilePainted
void tilePainted(TileRef tileRef)
Notifies listener that a tile has been (re)painted- Parameters:
tileRef- the reference to the painted tile
-
mapPainted
void mapPainted(int tileCount, long time)Notifies listener that the control has been (re)painted- Parameters:
tileCount- the number of tiles that where paintedtime- the time it took
-
tileCacheUpdated
void tileCacheUpdated(int used, int size)Notifies listener that the tile cache has been updated- Parameters:
used- the used slots of the cachesize- the size of the cache
-
-