正在显示
1 个修改的文件
包含
34 行增加
和
0 行删除
1 | +#ifndef __dmpcapabilitiesoperation_h__ | ||
2 | +#define __dmpcapabilitiesoperation_h__ | ||
3 | + | ||
4 | +#include <iostream> | ||
5 | +#include<fstream> | ||
6 | +#include "dmpserverresponse.h" | ||
7 | +#include "dmpcapabilitiesprovider.h" | ||
8 | + | ||
9 | +using namespace std; | ||
10 | + | ||
11 | +namespace DmpWmts | ||
12 | +{ | ||
13 | + class DmpCapabiliTilesOperation : public DmpCapabiliTilesProvider | ||
14 | + { | ||
15 | + private: | ||
16 | + std::string WMTS_NAMESPACE = "http://www.opengis.net/wmts/1.0"; | ||
17 | + std::string GML_NAMESPACE = "http://www.opengis.net/gml"; | ||
18 | + std::string OWS_NAMESPACE = "http://www.opengis.net/ows/1.1"; | ||
19 | + | ||
20 | + int TileWidth = 256; | ||
21 | + int TileHeight = 256; | ||
22 | + | ||
23 | + public: | ||
24 | + DmpCapabiliTilesOperation(); | ||
25 | + void WriteCapabilities(DmpServerResponse& response); | ||
26 | + void GetCapabilitiesDocument(DmpServerResponse& response); | ||
27 | + void CreateGetCapabilitiesDocument(string requestPath); | ||
28 | + void GetServiceIdentificationElement(); | ||
29 | + void GetServiceProviderElement( string provider); | ||
30 | + void GetServiceMetadataElement( string requestPath); | ||
31 | + }; | ||
32 | +} | ||
33 | + | ||
34 | +#endif |
请
注册
或
登录
后发表评论