diff --git a/app/charts/map/map.tsx b/app/charts/map/map.tsx index d4810e47e..f5e4a3869 100644 --- a/app/charts/map/map.tsx +++ b/app/charts/map/map.tsx @@ -219,6 +219,13 @@ export const MapComponent = () => { data: sortedShapes, pickable: true, autoHighlight: true, + parameters: { + /** + * Fixes hover on overlapping layers + * @see https://deck.gl/docs/developer-guide/tips-and-tricks#z-fighting-and-depth-testing + */ + depthTest: false, + }, extruded: false, filled: true, stroked: false, @@ -382,8 +389,11 @@ export const MapComponent = () => { onResize={handleResize} {...viewState} > -
-