Here is my use case:
Provide a Google Earth Map interface, and render certain pieces of data on that map.
This data ultimately resides in 3 different tables.
So I have the following code snippets
Once the google earth plugin has initialized I then attempt to call the following code
Which ultimately is this
Here is where things get interesting. So I deploy my application and open the map. I see the plugin initialize, a dialog about fetching data from server. And things just don't seem to finish. So I go looking at the dev console and I find no errors. Firebug has no errors. The RPC watch shows that only the first fetch has executed, and has returned successfully. And the server log is clean, no errors.
So I try to debug in hosted mode, something must be going wrong, and sometimes the only way to find errors is in hosted mode. Well in hosted mode, it works. All 3 fetches are performed and I see all of the data on the map as expected.
Any ideas what is going wrong when compiled to js?
Provide a Google Earth Map interface, and render certain pieces of data on that map.
This data ultimately resides in 3 different tables.
So I have the following code snippets
Once the google earth plugin has initialized I then attempt to call the following code
Which ultimately is this
Here is where things get interesting. So I deploy my application and open the map. I see the plugin initialize, a dialog about fetching data from server. And things just don't seem to finish. So I go looking at the dev console and I find no errors. Firebug has no errors. The RPC watch shows that only the first fetch has executed, and has returned successfully. And the server log is clean, no errors.
So I try to debug in hosted mode, something must be going wrong, and sometimes the only way to find errors is in hosted mode. Well in hosted mode, it works. All 3 fetches are performed and I see all of the data on the map as expected.
Any ideas what is going wrong when compiled to js?
Comment