I don't expect any help with this here, because I'm using Open Layers,
but I include the following information in case it's any help ...

I have two horrendously complicated pages that use Open Layers to load
Google Maps, and just recently in FF3.0.10 they've started exhibiting
similar behaviour to that described, hanging with the status bar
reading:
        "Transferring data from www.google.com"
However, if I click the red X icon to stop loading, which leaves the
page address in the address field, and then click <Shift Refresh> to
force a complete reload, both pages will load successfully.  This also
started happening previously a few months ago, and then seemed to cure
itself after a week or so.  The pages are:

        
http://www.macfh.co.uk/JavaJive/AudioVisualTV/SatelliteTV/SatelliteCalculator.html
        http://www.macfh.co.uk/Test/UKTerrestrialTVTest.html

The order of my loading is (I believe I mentioned the pages were
complicated, didn't I?):

1)      Minor scripts that sense legacy versions of IE(5-7), break out if
trapped in someone else's frames, and ensure that the page URLs
include www so that the keys for the Google and UK OS mapping APIs
will work.

2)      Load a site general and a legacy IE specific stylesheet.

3)      Define some further styles required for the form.

4)      Load a script supporting the form's calculations, etc.

5)      Load a script to calculate Magnetic Variance at a given location.

6)      Script defining most of the required global variables and setting
them to null, and various required functions which will be called
later.

7)      Load a script from proj4js to support coordinate transformations.

8)      Load the Open Layers code.

9)      Load the Google code.

10)     Script beginning: google.load( "maps", "2" ); google.load
( "search", "1" ); which then continues to define the remaining global
variables and functions concerned with mapping.

11)     HTML defining the page layout.

12)     <body onload="javascript:initCalc(top.location);" onunload="GUnload
()">

The hangup is occurring at 9 or 10, because the status message implies
that at least 9 has been reached, but the page is still completely
blank, implying that 11 has not.

On May 18, 10:10 am, Manel <[email protected]> wrote:
> Hi all,
>
> I'have developed a very simple page that were correctly running in all
> navigators and, suddenly, it started to go wrong in some FF and
> Chrome. I said "some" because there are some PC with the same FF
> version (3.0.10) running well and some others not.
>
> I can't post any link because the page is in a development
> environment, not available from the internet.
>
> The code I'm using...
>
> In the onload of the body:
>
> if (GBrowserIsCompatible())
>         {
>                 map = new GMap2(document.getElementById("map"));
>                 map.setCenter(new GLatLng(39.926588, -2.9), 6);
>                 map.setUIToDefault();
>                 mgr = new MarkerManager(map);
>
>                 GEvent.addListener(map, "moveend", onMove);
>                 geocoder = new GClientGeocoder();
>                 buscaMapa();
>
>         }
>
> }
>
> (buscaMapa is the function that loads some icons in the map. In this
> fucntion:
>
> var bounds = map.getBounds();
> var sw = bounds.getSouthWest();
> var ne = bounds.getNorthEast();
>
> parmBusqueda.latitudMin = sw.lat();
> parmBusqueda.latitudMax = ne.lat();
> parmBusqueda.longitudMin = sw.lng();
> parmBusqueda.longitudMax =  ne.lng();

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" 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-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to