GWT Google Maps V3覆盖小部件

时间:2012-04-10 09:42:34

标签: java javascript google-maps gwt google-maps-api-3

我正在使用GWT谷歌地图V3 API,我需要在地图上显示自定义形状。 对于简单元素,我使用了Polygon,Circle和InfoWidnow类,但我想显示一些其他小部件,如按钮或自定义面板。 有没有办法使用OverlayView类?我尝试了一个简单的解决方案:包含MapWidget和我的自定义小部件的AbsolutePanel,放在顶部,但我想尽可能多地使用gwt google maps类。我已经阅读了文档,并且还搜索了一个答案,但我无法弄明白,所以代码示例会很棒。 感谢名单!

2 个答案:

答案 0 :(得分:0)

只需使用标准GWT API和map V3 API。它们将很好地互连。

答案 1 :(得分:0)

我在这里找到了我需要的东西(javascript v3 api): https://developers.google.com/maps/documentation/javascript/overlays#CustomOverlays

方法名称和类非常相似,因此要弄清楚如何使用GWT类(如OverlayView)并不是那么困难。

以下是在地图上呈现的自定义小部件(包含SVG元素和动画)的示例:

private class TargettingOverlay extends OverlayView {

    protected Element div ;
    protected PanelWrapper panelWrapper;
    private TargettingEffect targetEffect;

    TargettingOverlay(){
        targetEffect = new TargettingEffect();
        targetEffect.setLinedDimension(10500);
        targetEffect.setLinesOffset(-5000);
    }

    void positionTarget(LatLng loc, boolean withoutLines){
        if (targetEffect == null )
            return;

        if (loc == null) {
            targetEffect.setElementsVisible(false);
            return;
        }
        targetEffect.setElementsVisible(true);


        Point p = null;
        Point sw = null;
        Point ne = null;
        LatLng locSW = (LatLng)this.getMap().getBounds().getSouthWest();
        LatLng locNE = (LatLng)this.getMap().getBounds().getNorthEast();

        //
        p = (Point)getProjection().fromLatLngToDivPixel(loc);
        sw = (Point)getProjection().fromLatLngToDivPixel(locSW);
        ne = (Point)getProjection().fromLatLngToDivPixel(locNE);



        targetEffect.setWithoutLinles(withoutLines);
        targetEffect.target((int)ne.getY(), (int)p.getY(), (int)sw.getX(), (int)p.getX());
    }

    @Override
    public void draw() {
        Point ne = (Point)getProjection().fromLatLngToDivPixel((LatLng)
                this.getMap().getBounds().getNorthEast());
        Point sw = (Point)getProjection().fromLatLngToDivPixel((LatLng)
                this.getMap().getBounds().getSouthWest());


        div.getStyle().setTop(ne.getY(), Unit.PX);
        div.getStyle().setLeft(sw.getX(), Unit.PX); 
    }

    @Override
    public void onAdd() {
        div = DOM.createDiv();

        getPanes().getOverlayLayer().appendChild(div);

        panelWrapper = new PanelWrapper(div);
        panelWrapper.attach();          

        targetEffect.setContainer(panelWrapper);
    }

    @Override
    public void onRemove() {
        div.removeFromParent();
        panelWrapper.removeFromParent();

        div = null;
        panelWrapper = null;
    }

}