/**
* Setup the Google Eartch KML provider to serve the gps tracking information.
*/
public void setupGoogleEarth() {
// Prepare the KML provider for Google Earth
googleEarth = new GoogleEarthKMLProvider();
googleEarth.setWritePlacemaks(false);
gpsReceiver.addTrackpointListener(googleEarth);
}