0

在谷歌地图 V3 中,我需要覆盖一个面板而不是标记。我在 V2 中通过使用 addControlWidget() 方法来做到这一点。这是与css一起的代码。请帮助我在 V3 中实现相同的功能。

ContentPanel panel = new ContentPanel();
     FlexTable fTable = new FlexTable();
     fTable.setWidget(0, 1, new HTML("TEST1"));
     fTable.setWidget(1, 1, new HTML("TEST2"));
     panel.add(fTable);
     panel.setStyleName("cssstyle");
     MapWidget map = new MapWidget();
      map.addControlWidget(panel);

CSS 代码:

.cssstyle {
         z-index: 1;
         float: right;
         position: absolute;}

试图在地图顶部覆盖自定义小部件或面板(即,如在图表中显示图例)..

4

1 回答 1

0

使用 CustomControls 我可以在 GWT Maps V3 中添加(覆盖)面板。是代码...

于 2013-02-22T06:16:22.003 回答