DownloaderF.h 407 B

123456789101112131415161718
  1. //---------------------------------------------------------------------------
  2. #ifndef DownloaderFH
  3. #define DownloaderFH
  4. //---------------------------------------------------------------------------
  5. #include <Classes.hpp>
  6. typedef struct _TileMap
  7. {
  8. int Zoom;
  9. int X;
  10. int Y;
  11. } TileMap;
  12. String getTileURL(double ALat, double ALon, int AZoom);
  13. String getTileURL(int AX, int AY, int AZoom);
  14. #endif