You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, all credits get mashed together into a single list, but this makes it hard to properly credit some sources. For example, Creative Commons Attribution 4.0 International (CC BY 4.0) requires a link to the CC 4.0 license, but there's no way via credits to indicate which data this license applies to without repeating information across Credits.
For example let's say I have a data source Foo Imagery, that requires attribution to both Bar.inc and CC 4.0. I also need to link to both. Right now I would be forced to write
This can get pretty crowded when you have multiple data sources and many attributions are much more elaborate. I would much rather write:
Foo Imagery (includes part of data X and Y) provided by Bar.inc and licensed under CC 4.0
The best idea I have for fixing this is allowing HTML credits instead of just text. OpenLayers does this already, but all credits are manually added by the user. Since we support server-side credits, we probably need to sanitize the credit using https://www.npmjs.com/package/xss or similar.
The text was updated successfully, but these errors were encountered:
Currently, all credits get mashed together into a single list, but this makes it hard to properly credit some sources. For example, Creative Commons Attribution 4.0 International (CC BY 4.0) requires a link to the CC 4.0 license, but there's no way via credits to indicate which data this license applies to without repeating information across Credits.
For example let's say I have a data source
Foo Imagery
, that requires attribution to both Bar.inc and CC 4.0. I also need to link to both. Right now I would be forced to writeThis can get pretty crowded when you have multiple data sources and many attributions are much more elaborate. I would much rather write:
The best idea I have for fixing this is allowing HTML credits instead of just
text
. OpenLayers does this already, but all credits are manually added by the user. Since we support server-side credits, we probably need to sanitize the credit using https://www.npmjs.com/package/xss or similar.The text was updated successfully, but these errors were encountered: