|
From: Brad K. <br...@gm...> - 2010-04-23 12:33:42
|
The way I did this is probably not the best, but you can get the div
of the marker (parent in code below),and add a child element to put
the text in:
DivElement datablock =
com.google.gwt.dom.client.Document.get().createDivElement();
datablock.setClassName("matm-datablock"); // css style
datablock.setId(uniqueID);
datablock.setInnerText(this.toString());
parent.appendChild(datablock);
The nice thing is then you can style it however you like.
Brad
- Show quoted text -
On Fri, Apr 23, 2010 at 7:24 AM, Ron Zohar <rz...@gm...> wrote:
> Hello,
>
> is there a way to set a label or a bubble as in google maps api ?
>
> -- Ron
> --
> GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT!
> Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01
>
> ------------------------------------------------------------------------------
> _______________________________________________
> Gwt-openlayers-users mailing list
> Gwt...@li...
> https://lists.sourceforge.net/lists/listinfo/gwt-openlayers-users
>
|