I am intending to add custom component (such as dialog, panel, toolbar,...) into Vaadin Google Map add-on from server side. After reading MapWidget.class source code in gwt-maps, I understand that I have to extend CustomControl for client-side component (override Initilize() function to return the control itself). But in VGoogleMap of add-on, I don't see anywhere to put logic of adding custom control in the map except for google map built-in controls. I am extending VGoogleMap, but the 'map' field is private so there is nothing much I can handle.
Thanks, Chang.