Skip to content

Commit

Permalink
Merge pull request #33 from sentinel-hub/fix/wms-show-logo
Browse files Browse the repository at this point in the history
Wms set showlogo queryparam
  • Loading branch information
dgostencnik authored Feb 26, 2020
2 parents 77e19f3 + 5ba1919 commit cb04037
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layer/wms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export function wmsGetMapUrl(
if (params.nicename) {
queryParams.nicename = params.nicename;
}
if (params.showlogo) {
if (params.showlogo !== undefined) {
queryParams.showlogo = params.showlogo;
}
if (params.bgcolor) {
Expand Down

0 comments on commit cb04037

Please sign in to comment.