We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent e005d6e commit 9d29b93Copy full SHA for 9d29b93
src/server/services/wfs/qgswfsgetcapabilities.cpp
@@ -153,6 +153,11 @@ namespace QgsWfs
153
}
154
scalarCapabilitiesElement.appendChild( comparisonOperatorsElem );
155
156
+ QDomElement idCapabilitiesElement = doc.createElement( QStringLiteral( "ogc:Id_Capabilities" ) );
157
+ QDomElement fidElem = doc.createElement( QStringLiteral( "ogc:FID" ) );
158
+ idCapabilitiesElement.appendChild( fidElem );
159
+ filterCapabilitiesElement.appendChild( idCapabilitiesElement );
160
+
161
return doc;
162
163
0 commit comments