Skip to content

Releases: nitrousdigital/gwt-earth-3

1.0

14 Apr 17:03
Compare
Choose a tag to compare

This release contains a fix for the critical issue where it's not possible to display 2 or more GoogleEarthWidget instances without chaining their onInitSuccess() methods. The unique ID assigned to the DIV that contains the Google Earth plugin is now correctly incremented when a new GoogleEarthWidget instance is constructed instead of waiting for GEPlugin initialization.

  • The ID of DIV that contains the GE plugin is now exposed via the new method: GoogleEarthWidget::getContainerId();
  • GoogleEarthWidget::onInitSuccess and GoogleEarthWidget::onInitFailure are now exposed as protected methods.
  • GoogleEarthWidget::pluginReadyListeners is now exposed as a protected member variable.

0.9

14 Apr 17:01
Compare
Choose a tag to compare
0.9

This version contains non-critical minor updates to simplify documentation and sample code since the Google Earth API key is no longer required.

Updated com.nitrous.gwt.earth.client.api.GoogleEarth

  • deprecated loadApi(key, Runnable)
  • added loadApi(Runnable)

Updated all demos to use new GoogleEarth::loadApi(Runnable) method and removed API keys.

Minor JavaDoc fixes.

0.8

14 Apr 17:00
Compare
Choose a tag to compare
0.8

Adding support for the new Google Earth JavaScript API 1.009 functions:

  • Added GETourPlayer.getLoop and GETourPlayer.setLoop
  • Added GETourPlayer.getCurrentSpeed and GETourPlayer.setCurrentSpeed.
  • Added GETourPlayer.getControl.
  • Added GETourPlayerControl.getVisiblity and GETourPlayerControl.setVisiblity.

Updated JavaDoc to exclude demo classes.

Added KML tour demos

0.7

14 Apr 16:59
Compare
Choose a tag to compare
0.7

Fixes & Enhancements

  • Added Google Ajax API Loader
  • Updated all demos to use Google Ajax API Loader
  • Fixed JSNI event callbacks for MouseClickListener in GEEventEmitter
  • Removed GEHtmlDivBalloon::setContent(Widget) as this method was experimental and not very useful.
  • Added demos: Placemark Click Demo, Drawing Demo, Balloon widget demo & Shim demo.

0.6

14 Apr 16:58
Compare
Choose a tag to compare
0.6
  • Fixes for Issue 5: Return type of KmlMouseEvent.getDidHitGlobe() incorrect (GWT Developer Plugin + Internet Explorer).
  • Also modified GoogleEarthWidget to be a Composite Widget.

0.5

14 Apr 16:57
Compare
Choose a tag to compare
0.5

Issues addressed in this release:

  • Fixed access modifier on GoogleEarth::addEventListener methods.
  • Fixed return type of KmlEvent::getTarget()
  • Added getType() to GEAbstractBalloon
  • Updated javadoc for each demo to include a URL to the original JavaScript demo.
  • Moved getType() from KmlObject to to GESchemaObject
  • Added getTimeStamp() to KmlEvent
  • Added many demos

0.4

14 Apr 16:55
Compare
Choose a tag to compare
0.4

IMPORTANT NOTE: ge.getWindow().setVisibility(true) must now be called manually after the GEPlugin is loaded. Previously, the GoogleEarthWidget was calling this automatically but that code has now been removed.

  • Added GoogleEarth class that provides the google.earth namespace functionality.
  • Added batch execution support.
  • Added demos
  • Fixed method access modifiers in KmlExtrudableGeometry
  • Fixed some JavaDoc links
  • Modified GoogleEarthWidget to use the new GoogleEarth class for google.earth namespace function calls such as createInstance()

0.2

14 Apr 16:53
Compare
Choose a tag to compare
0.2

Fixed issue:

  • Issue 3:GESchemaObjectContainer::replaceChild(oldChild, newChild) is broken
  • Added more sample code.