Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Layer definition elements unused in WMS GetCapabilities response #115

Closed
jfbourgon opened this issue May 24, 2019 · 0 comments · Fixed by #191 or #198
Closed

Layer definition elements unused in WMS GetCapabilities response #115

jfbourgon opened this issue May 24, 2019 · 0 comments · Fixed by #191 or #198
Assignees
Labels

Comments

@jfbourgon
Copy link

Layer definition elements (title, abstract) are not properly rendered in WMS GetCapabilities response.

Following layer definition

layers = {
   hrdtm = {
        type = "simplesourceconf"
        name = "hrdtm"
        title = "High Resolution Digital Terain Model (HRDTM)"
        abstract = "High Resolution Digital Terain Model generated from LiDAR"
        source = {
            ...

will produce the following output.

<Layer queryable="false">
   <Name>hrdtm</Name>
   <Title>hrdtm</Title>
   <Abstract>hrdtm</Abstract>
...

Faulty code seems to be:

Name = Some(layerName),
Title = layerName,
Abstract = Some(layerName),

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
3 participants