What steps will reproduce the problem?
1. gex.util.displayKml(url)
fix: line 4750
var pluginInstance = this.pluginInstance;
google.earth.fetchKml(this.pluginInstance, url, function(kmlObject) {
if (kmlObject) {
pluginInstance.getFeatures().appendChild(kmlObject);
}
});
instead of
google.earth.fetchKml(this.pluginInstance, url, function(kmlObject) {
if (kmlObject) {
this.pluginInstance.getFeatures().appendChild(kmlObject);
}
});
Original issue reported on code.google.com by Eugene.F...@gmail.com on 10 Jun 2009 at 9:55
Original issue reported on code.google.com by
Eugene.F...@gmail.com
on 10 Jun 2009 at 9:55