-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1100,6 +1100,16 @@ bool QgsWFSProvider::changeAttributeValues( const QgsChangedAttributesMap &attr_ | |
} | ||
} | ||
|
||
|
||
QMap<QString, QString> QgsWFSProvider::metadata() | ||
{ | ||
QMap<QString, QString> result; | ||
result[tr( "Max Features" )] = mShared->mCaps.maxFeatures == 0 ? tr( "not provided" ) : QString( mShared->mCaps.maxFeatures ); | ||
result[tr( "Supports Paging" )] = mShared->mCaps.supportsPaging ? tr( "supported" ) : tr( "unsupported" ); | ||
result[tr( "Supports Joins" )] = mShared->mCaps.supportsJoins ? tr( "supported" ) : tr( "unsupported" ); | ||
return result; | ||
This comment has been minimized.
Sorry, something went wrong.
m-kuhn
Member
|
||
} | ||
|
||
bool QgsWFSProvider::describeFeatureType( QString& geometryAttribute, QgsFields& fields, QgsWkbTypes::Type& geomType ) | ||
{ | ||
fields.clear(); | ||
|
Can you expand the word "some" to some description ;)