Skip to content

Commit

Permalink
add metadata url in layer properties info
Browse files Browse the repository at this point in the history
  • Loading branch information
Samweli committed Dec 18, 2019
1 parent b566eac commit 57730ab
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/providers/wms/qgswmsprovider.cpp
Expand Up @@ -1750,7 +1750,16 @@ QString QgsWmsProvider::layerMetadata( QgsWmsLayerProperty &layer )
tr( "Title" ) %
QStringLiteral( "</td>"
"<td>" ) %
layer.title;
layer.title %
QStringLiteral( "</td></tr>"

// Layer Metadata URL
"<tr><td>" ) %
tr( "Metadata URL" ) %
QStringLiteral( "</td>"
"<td>" ) %
layer.metadataUrl.onlineResource.xlinkHref;

QStringLiteral( "</td></tr>"

// Layer Abstract
Expand Down

0 comments on commit 57730ab

Please sign in to comment.