I'm trying to wrap my head around the proper architecture for a demo app that uses Google Earth. I'd appreciate any suggestions, as I'm new to this!
The web page should:
- display a Google Earth globe
- allow for the user to select certain objects (KML) to be visible interactively (checkboxes, buttons etc)
What I have:
- a Java package already written which produces the KML-data I want to use
- a basic web page which embedds a Google Earth globe.
So, I guess the question is how to get the Java output into Google Earth. As GE's API is for Javascript, is there any way to call the Java-methods from there? Any other way to solve it?