Hey MODPILOT,
there is no official way, but you can navigate to our Explorer (
opensky-network.org/network/explorer) and then enter the following into your Javascript console:
kmlLayer = new google.maps.KmlLayer({
url: 'http://googlemaps.github.io/js-v2-samples/ggeoxml/cta.kml',
map: flightArchive.hybridMap.map
});
In Chrome and Firefox the Javascript console can be opened by pression Ctrl-Shift-J on your keyboard. Of course you need to replace the url from the example above with the location of your own kml file.
If you want to delete the kml layer, simply set the map of the layer to null:
For details on the Google Maps API on kml layers, please refer to
developers.google.com/maps/documentation...t/examples/layer-kml.
Cheers,
Marco