Interface AerisTileDisplayDelegate
-
- All Known Implementing Classes:
AnimationControlView
public interface AerisTileDisplayDelegateTile display delegate that can be set in theAerisMapViewto handle displaying tile name and time when a tile layer is applied or animated through.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description android.os.HandlergetHandler()Gets the handler so that this can be written to from a separate thread.voidsetTitleAndTime(String tileName, Date time)Set the name and the date of the tile animation.
-
-
-
Method Detail
-
setTitleAndTime
void setTitleAndTime(String tileName, Date time)
Set the name and the date of the tile animation.- Parameters:
tileName- tile name to displaytime- date object to display
-
getHandler
android.os.Handler getHandler()
Gets the handler so that this can be written to from a separate thread. Most view objects already have this method to return.- Returns:
- handler for this delegate.
-
-