123456789101112131415161718 |
- //---------------------------------------------------------------------------
- #ifndef DownloaderFH
- #define DownloaderFH
- //---------------------------------------------------------------------------
- #include <Classes.hpp>
- typedef struct _TileMap
- {
- int Zoom;
- int X;
- int Y;
- } TileMap;
- String getTileURL(double ALat, double ALon, int AZoom);
- String getTileURL(int AX, int AY, int AZoom);
- #endif
|