summaryrefslogtreecommitdiff
path: root/include/llmr/map/map.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/llmr/map/map.hpp')
-rw-r--r--include/llmr/map/map.hpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/include/llmr/map/map.hpp b/include/llmr/map/map.hpp
index 7f2903a261..745ccce89d 100644
--- a/include/llmr/map/map.hpp
+++ b/include/llmr/map/map.hpp
@@ -11,7 +11,7 @@ class tile;
class map {
public:
- map(class platform *platform);
+ map();
~map();
void setup();
@@ -26,10 +26,15 @@ public:
void tileFailed(tile *tile);
private:
- platform *platform;
+ void updateTiles();
+
+private:
transform *transform;
painter *painter;
+ // int32_t min_zoom;
+ // int32_t max_zoom;
+
std::vector<tile *> tiles;
};