any idea how to use Java and add ANY MAP to VerticalLayout? ANY MAP...leafl

Anyone has any idea how to use Java and add ANY MAP to VerticalLayout? ANY MAP…leaflet or google…

Tabs tabs = new Tabs(tab1, tab2, tab3);
Div pages = new Div(d1, d2, d3);
add(tabs); //THIS WORKS FINE
LMap leafletMap = new LMap();
leafletMap.setCenter(60.4525, 22.301);
leafletMap.setZoomLevel(15);		
// add(leafletMap); THIS DOES NOT WORK EITHER....LMap is not a compnent it seems for Vaadin 10

Hi,

I think the V-Leaflet add-on has only versions that support Vaadin 7 and Vaadin 8 (https://vaadin.com/directory/component/v-leaflet/2.0.7), probably because the client-side API the add-on uses has been implemented with GWT.

-Katri

Thanks Katri, I think V10 moving into V11 seems like the train losing wagons that had been dragged along V7 and V8 just fine.
Does V8 offer ready mobile stylesheets(would prefer not to be reinventing the wheel)and support mobile OK in general or Touchkit is the preferred way of targetting mobile on V8?