Skip to content

Commit

Permalink
Fix geosolutions-it#9920 Issue editing WMS layers style on 3D view (g…
Browse files Browse the repository at this point in the history
  • Loading branch information
allyoucanmap committed Jan 29, 2024
1 parent 2dcde13 commit 28c47e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/client/components/map/cesium/plugins/WMSLayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function wmsToCesiumOptionsSingleTile(options) {
height: options.size || 2000,
bbox: "-180.0,-90,180.0,90",
srs: "EPSG:4326"
}, params || {}, getAuthenticationParam(options));
}, (options._v_ ? {_v_: options._v_} : {}), params || {}, getAuthenticationParam(options));

const url = (isArray(options.url) ? options.url[Math.round(Math.random() * (options.url.length - 1))] : options.url) + '?service=WMS&version=1.1.0&request=GetMap&'
+ getQueryString(addAuthenticationToSLD(parameters, options));
Expand Down

0 comments on commit 28c47e6

Please sign in to comment.