Hi, great Component, thank you.
It seems to me that the tap does not work on smart phones also if I add setTap(true) on MapOptions, for example:
MapOptions options = new DefaultMapOptions();
options.setTap(true);
LeafletMap leafletMap = new LeafletMap(options);
leafletMap.setBaseUrl("https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png");
leafletMap.onClick((e) -> {
Notification.show("New marker added to map.", 3000, Position.TOP_CENTER);
});