Description
Hey, thanks a lot for your nice work! I am trying to make the context menu https://github.com/aratcliffe/Leaflet.contextmenu plugin work with your add-on. In plain JavaScript it would probably be done like this:
var map = L.map('map', {
contextmenu: true,
contextmenuWidth: 140,
contextmenuItems: [{
text: 'some menu item',
callback: doSomething
});
So my first problem is that this requires extending the MapOptions
interface (?!). But this does not seem to be right, because you probably do not want to add more methods to MapOptions
every time a new leaflet plugin gets added and even more so it would be nice to use plugins without changing this add-on at all.
So another more flexible way would be adding the ContextMenu (which is implemented as a leaflet Handler: https://github.com/aratcliffe/Leaflet.contextmenu/blob/202b2ca8b302431f6d99ce93edf95684d4ee4422/src/Map.ContextMenu.js#L5) manually after creating the map:
var map = L.map('map');
L.setOptions(map, {
contextmenu: true,
contextmenuWidth: 140,
contextmenuItems: [{
text: 'some menu item',
callback: doSomething
}]
});
map.addHandler('contextmenu', L.Map.ContextMenu)
Can you give some advice how to do this for leaflet4vaadin? Generally, how should a Leaflet.Handler be added to the map? Btw if you are interested in adding context menu here I can also send a PR once I made it work.