Skip to content

Commit

Permalink
[Bugfix][Server] WFS DescribeFeatureType: Support MultiSurface in schema
Browse files Browse the repository at this point in the history
  • Loading branch information
rldhont committed May 11, 2020
1 parent 03abefd commit df8b19d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/server/services/wfs/qgswfsdescribefeaturetype.cpp
Expand Up @@ -243,6 +243,9 @@ namespace QgsWfs
case QgsWkbTypes::MultiLineString:
geomElem.setAttribute( QStringLiteral( "type" ), QStringLiteral( "gml:MultiLineStringPropertyType" ) );
break;
case QgsWkbTypes::MultiSurface:
geomElem.setAttribute( QStringLiteral( "type" ), QStringLiteral( "gml:MultiSurfaceType" ) );
break;
case QgsWkbTypes::MultiPolygon25D:
case QgsWkbTypes::MultiPolygon:
geomElem.setAttribute( QStringLiteral( "type" ), QStringLiteral( "gml:MultiPolygonPropertyType" ) );
Expand Down

0 comments on commit df8b19d

Please sign in to comment.