mapControls disappear and openInfoWindowTabs not working
Hi,
I am using and application  with gwt, google maps and ext. You can
access it  at http://debegesa.dreamhosters.com/map/SMap.html
This Monday, without any code change, it has stop working. First, the
controls to zoom the map and to select the active map layer are not
showing anymore. Second, when you click a geotag, the new info window
that should appear with the details of the geotag does not appear.
Although I am getting no error, the application is not working
properly.
I am using previous version of the libraries (gwt 1.4, gwt-ext 0.9.4
and googlemaps_gwt_2.2.1) but the application has stop working
properly suddenly this morning (20/10/2008).
Any ideas about what could be wrong? Some changes in the googleMaps
controls for previous versions? Some errors on my application?

Thanks a lot for your help

This is the code I am using to show the info window
GInfoWindowOptions opts = new GInfoWindowOptions();
opts.setMaxWidth(25);
marker.openInfoWindow(new HTML("algo"),opts);

and for the map

private void createMap() {

                // Create map widget
                mapWidget = new GMap2Widget("100px", "100px");

                mapPanel.add(mapWidget);

                // renders the map
                gmap = mapWidget.getGmap();

                //mapContainerPanel.add(new HTML(
                //      "<div id='geotag_preloader'>Loading...</div>"), 200, 
200);

                gmap.enableScrollWheelZoom();

                // adds zoom, pan and type controll
                gmap.addControl(GControl.GMapTypeControl());
                gmap.addControl(GControl.GOverviewMapControl());
                gmap.addControl(GControl.GLargeMapControl());
                gmap.addControl(GControl.GScaleControl());

                setFullscreen();

                gmap.setZoom(13);
                // move map center to san sebastian, spain
                gmap.panTo(new GLatLng(43.307005107782196, 
-2.3850631713867187));

        }


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to