Skip to content

Commit

Permalink
Merge pull request #396 from fschmenger/fix_hoverable_wms_layer
Browse files Browse the repository at this point in the history
Fix hoverable WMS layers.
  • Loading branch information
chrismayer authored Jun 5, 2024
2 parents 8d9cf97 + 32a8f49 commit 537e3d4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/factory/Layer.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,11 +129,11 @@ export const LayerFactory = {
ratio: lConf.ratio,
interpolate: lConf.interpolate,
projection: lConf.projection,
crossOrigin: lConf.crossOrigin,
hoverable: lConf.hoverable,
hoverAttribute: lConf.hoverAttribute,
hoverOverlay: lConf.hoverOverlay
})
crossOrigin: lConf.crossOrigin
}),
hoverable: lConf.hoverable,
hoverAttribute: lConf.hoverAttribute,
hoverOverlay: lConf.hoverOverlay
});

return layer;
Expand All @@ -158,11 +158,11 @@ export const LayerFactory = {
serverType: lConf.serverType,
tileGrid: lConf.tileGrid,
projection: lConf.projection,
crossOrigin: lConf.crossOrigin,
hoverable: lConf.hoverable,
hoverAttribute: lConf.hoverAttribute,
hoverOverlay: lConf.hoverOverlay
})
crossOrigin: lConf.crossOrigin
}),
hoverable: lConf.hoverable,
hoverAttribute: lConf.hoverAttribute,
hoverOverlay: lConf.hoverOverlay
});

return layer;
Expand Down

0 comments on commit 537e3d4

Please sign in to comment.