How to draw dashed line on google maps using vaadin api?

Hi, i am using ‘GoogleMapPolyline’ class to create a line on map. by connecting Lat Loongs. it has given a straight line between coordinates, i am looking for a solution to draw that line with dashed line. is there any posiblility in vaadin?
if we use java script we could use

var lineSymbol = {
path: ‘M 0,-1 0,1’,
strokeOpacity: 1,
scale: 4
};

but i dont know how we can do thins with vaadin.

can some one have any ideas on this?

Thanks
Lucky.

Without knowing about “GoogleMapPolyline” (not a Framework class), in Vaadin Framework you would create your own theme and add your specific styling in the SCSS file named after your theme, such as your-theme.scss .

Cheers,
Enver