http://code.google.com/apis/maps/documentation/overlays.html#Layers
shows the following sample javascript code;
function initialize() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map_canvas"));
map.setCenter(new GLatLng(40.730885,-73.997383), 15);
var myLayer = new GLayer("org.wikipedia.en");
map.addOverlay(myLayer);
}
}
I can not find the equivalent of GLayer() class on gwt-maps-1.0.4/gwt-
maps-1.0.4/doc/javadoc/index-all.html.
Please advise how to convert the above javascript code to the
equivalent GWT Java code.
Thanks in advance for your help.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---