QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgswfsdescribefeaturetypegml.h
Go to the documentation of this file.
1/***************************************************************************
2 qgswfsdescribefeaturetype.h
3 -------------------------
4 begin : December 20 , 2016
5 copyright : (C) 2007 by Marco Hugentobler (original code)
6 (C) 2012 by René-Luc D'Hont (original code)
7 (C) 2014 by Alessandro Pasotti (original code)
8 (C) 2017 by David Marteau
9 email : marco dot hugentobler at karto dot baug dot ethz dot ch
10 a dot pasotti at itopen dot it
11 david dot marteau at 3liz dot com
12 ***************************************************************************/
13
14/***************************************************************************
15 * *
16 * This program is free software; you can redistribute it and/or modify *
17 * it under the terms of the GNU General Public License as published by *
18 * the Free Software Foundation; either version 2 of the License, or *
19 * (at your option) any later version. *
20 * *
21 ***************************************************************************/
22#ifndef QGSWFSDESCRIBEFEATURETYPEGML_H
23#define QGSWFSDESCRIBEFEATURETYPEGML_H
24
25#include <QDomDocument>
26#include <QDomElement>
27
28#include "qgsserverinterface.h"
29#include "qgswfsparameters.h"
30
39{
40 private:
41
45 QString getGmlGeometryType( const QgsVectorLayer *layer ) const;
46
47 void setSchemaLayer( QDomElement &parentElement, QDomDocument &doc, const QgsVectorLayer *layer ) const;
48
52 QDomDocument createDescribeFeatureTypeDocument( QgsServerInterface *serverIface, const QgsProject *project, const QString &version,
53 const QgsServerRequest &request ) const;
54
55 const QgsWfs::QgsWfsParameters wfsParameters;
56
57 public:
58
65
75 void writeDescribeFeatureType( QgsServerInterface *serverIface, const QgsProject *project, const QString &version,
76 const QgsServerRequest &request, QgsServerResponse &response ) const;
77};
78
79
80#endif
Encapsulates a QGIS project, including sets of map layers and their styles, layouts,...
Definition: qgsproject.h:107
QgsServerInterface Class defining interfaces exposed by QGIS Server and made available to plugins.
QgsServerRequest Class defining request interface passed to services QgsService::executeRequest() met...
QgsServerResponse Class defining response interface passed to services QgsService::executeRequest() m...
Represents a vector layer which manages a vector based data sets.
GML output formatter for DescribeFeatureType.
void writeDescribeFeatureType(QgsServerInterface *serverIface, const QgsProject *project, const QString &version, const QgsServerRequest &request, QgsServerResponse &response) const
Output GML response.
QgsWfsDescribeFeatureTypeGml(const QgsWfs::QgsWfsParameters wfsParams)
Constructor.
Provides an interface to retrieve and manipulate WFS parameters received from the client.