Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make tooltips interactive themselves #7532

Merged
merged 4 commits into from
Feb 7, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Merge branch 'main' into tooltip-events
  • Loading branch information
mourner authored Feb 7, 2022
commit 405419a7646d7b120b107ac36a24fc3bad6398d5
7 changes: 3 additions & 4 deletions src/layer/DivOverlay.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,9 @@ export var DivOverlay = Layer.extend({
// If true, the popup/tooltip will listen to the mouse events.
interactive: false,

// @option offset: Point = Point(0, 7)
// The offset of the popup position. Useful to control the anchor
// of the popup when opening it on some overlays.
offset: [0, 7],
// @option offset: Point = Point(0, 0)
// The offset of the overlay position.
offset: [0, 0],

// @option className: String = ''
// A custom CSS class name to assign to the overlay.
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.