提交 0900d00db249ecbe2ee5654c0fa09bcd56c73af0

作者 LJH 李佳桓
1 个父辈 239ca98b

add

  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
\ No newline at end of file
... ...
注册登录 后发表评论