-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbgooglemapsmaker.h
More file actions
36 lines (25 loc) · 870 Bytes
/
bgooglemapsmaker.h
File metadata and controls
36 lines (25 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef BGOOGLEMAPSMAKER_H
#define BGOOGLEMAPSMAKER_H
#include <string>
class BGooglemapsMaker
{
public:
BGooglemapsMaker(const std::string& fileName, const std::string& outputFolder, unsigned int minZoomlevel = 1, unsigned int maxZoomlevel = 8);
virtual ~BGooglemapsMaker();
bool generateTilesMagick();
void printParameters();
void setFileName(const std::string& fileName);
void setOutputFolder(const std::string& outputFolder);
void setMaxZoomLevel(unsigned int max);
void setMinZoomLevel(unsigned int min);
private:
std::string m_fileName;
unsigned int m_outputMinZoom;
unsigned int m_outputMaxZoom;
unsigned int m_outputImageHeight;
unsigned int m_outputImageWidth;
const unsigned int m_outputTileSize;
std::string m_outputPrefix;
std::string m_outputFolder;
};
#endif // BGOOGLEMAPSMAKER_H