We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 173fc22 commit b0a7c4fCopy full SHA for b0a7c4f
src/vendors/Geo.jsx
@@ -671,9 +671,10 @@ function Geo(props) {
671
// Check for features at the current pointer position
672
map.forEachFeatureAtPixel(pixel, function (feature, layer) {
673
// If a layer is found and its selectable property is not false
674
+ console.debug('Hover feature on layer:', layer);
675
if (layer && layer.get('selectable') !== false) {
676
cursorStyle = 'pointer'; // Change the cursor to pointer
- return true; // Stop iterating through the features
677
+ return false; // Stop iterating through the features
678
}
679
});
680
0 commit comments