正在显示
1 个修改的文件
包含
25 行增加
和
0 行删除
1 | +/************************************************************************** | |
2 | +* file: dmpesritileprovider.h | |
3 | + | |
4 | +* Author: wanzhongping | |
5 | +* Date: 2021-05-28 14:23:54 | |
6 | +* Email: zhongpingw@chinadci.com | |
7 | +* copyright: 广州城市信息研究所有限公司 | |
8 | +***************************************************************************/ | |
9 | +#ifndef __dmpesritileprovider_h__ | |
10 | +#define __dmpesritileprovider_h__ | |
11 | +#include "dmptileprovider.h" | |
12 | +#include <string> | |
13 | + | |
14 | +namespace DmpWmts | |
15 | +{ | |
16 | + class DmpEsriTileProvider : public DmpTileProvider | |
17 | + { | |
18 | + public: | |
19 | + DmpEsriTileProvider(); | |
20 | + void WriteTile(const int row, const int col, const int level, const std::string& format, DmpServerResponse& response) override; | |
21 | + private: | |
22 | + std::string IntToHex8Str(const int num); | |
23 | + }; | |
24 | +} | |
25 | +#endif //__dmpesritileprovider_h__ | ... | ... |
请
注册
或
登录
后发表评论