Interface ITileDataSink

All Known Implementing Classes:
BitmapTileLoader, OverzoomDataSink, TileDataSink, TileLoader, VectorTileLoader

public interface ITileDataSink
ITileDataSink callbacks (implemented by MapTileLoader)
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Notify loader that tile loading is completed.
    void
    Pass read MapElement data to loader.
    void
    Pass read Bitmap data to loader.
  • Method Details

    • process

      void process(MapElement element)
      Pass read MapElement data to loader.

      NOTE: MapElement passed belong to the caller! i.e. dont hold references to any of its data after callback function returns.

    • setTileImage

      void setTileImage(Bitmap bitmap)
      Pass read Bitmap data to loader.
    • completed

      void completed(QueryResult result)
      Notify loader that tile loading is completed.