fix for not being able to click button inside tooltip when node was searched
This commit is contained in:
parent
8dc48316f3
commit
261ab9fe61
1 changed files with 4 additions and 1 deletions
|
|
@ -1779,7 +1779,10 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
// open tooltip for node
|
// open tooltip for node
|
||||||
map.openTooltip(getTooltipContentForNode(node), nodeMarker.getLatLng());
|
map.openTooltip(getTooltipContentForNode(node), nodeMarker.getLatLng(), {
|
||||||
|
interactive: true, // allow clicking buttons inside tooltip
|
||||||
|
permanent: true, // don't auto dismiss when clicking buttons inside tooltip
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue