henrichen / zkgmapsz

Automatically exported from code.google.com/p/zkgmapsz
0 stars 0 forks source link

Tooltip not work after ZK6 #21

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago

As code below, tooltip not displayed:

<zk>
<window id="mapWin" height="100%" width="100%">
    <attribute name="onCreate">
        map.panTo(50.752213, 10.437012);
        map.setZoom(6);

        Gmarker gmark = new Gmarker();
        gmark.setParent(map);
        gmark.setLat(47.698710);
        gmark.setLng(10.3276800);
        gmark.setTooltiptext("This is a tooltip for gmarker");

        Gpolygon gpoly = new Gpolygon();
        gpoly.setParent(map);
            gpoly.addPoint(47.0,10.0,3);
            gpoly.addPoint(47.0,10.5,3);
            gpoly.addPoint(47.5,10.5,3);
            gpoly.addPoint(47.5,10.0,3);
            gpoly.addPoint(47.0,10.0,3);
            gpoly.setTooltiptext("This is a tooltip for gpoly");
    </attribute>
    <gmaps id="map" width="100%" height="100%" ></gmaps>
</window>
</zk>

Also refer to http://www.zkoss.org/forum/listComment/20889

Original issue reported on code.google.com by benbai...@gmail.com on 23 Oct 2012 at 7:33

GoogleCodeExporter commented 9 years ago
same with me, I'm using zk 6.5.11, Gmapsz 3.0.1, gmark totoltiptext not work.
please consider to fix this issue. Thank you.

Original comment by maikel.chandika@gmail.com on 5 Mar 2013 at 9:44

GoogleCodeExporter commented 9 years ago

Original comment by raymondchao@potix.com on 29 Jul 2013 at 8:51