Skip to content

Commit

Permalink
Merge pull request #12 from cyrielleC/master
Browse files Browse the repository at this point in the history
giving possibility to maintain multiple selection on mouseHouver
  • Loading branch information
techjb committed Aug 16, 2023
2 parents 8c35632 + 7637833 commit 4443d75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MVTSource.js
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ class MVTSource {
}

onMouseHover(event, callbackFunction, options) {
this._multipleSelection = false;
this._multipleSelection = (options && options.multipleSelection) || false;
options = this._getMouseOptions(options, true);
this._mouseEvent(event, callbackFunction, options);
}
Expand Down

0 comments on commit 4443d75

Please sign in to comment.