Skip to content

Commit

Permalink
#296 Fix WMS url query
Browse files Browse the repository at this point in the history
  • Loading branch information
tariqksoliman committed Dec 15, 2022
1 parent 2cf39a4 commit 1b9d448
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/essence/Basics/Layers_/leaflet-tilelayer-middleware.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ L.TileLayer.ColorFilter = L.TileLayer.extend(colorFilterExtension)

// We can't extend an already extended so we'll merge by hand
L.TileLayer.WMSColorFilter = L.TileLayer.extend(
Object.assign(wmsExtension, colorFilterExtension)
Object.assign(colorFilterExtension, wmsExtension)
)

L.tileLayer.colorFilter = function (url, options) {
Expand Down

0 comments on commit 1b9d448

Please sign in to comment.